惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 三生石上(FineUI控件)
D
Docker
GbyAI
GbyAI
宝玉的分享
宝玉的分享
Jina AI
Jina AI
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Vercel News
Vercel News
博客园_首页
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
S
SegmentFault 最新的问题
Microsoft Security Blog
Microsoft Security Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
美团技术团队
V
V2EX
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
IT之家
IT之家
Apple Machine Learning Research
Apple Machine Learning Research
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com

博客园 - 10cn.net

expdp/impdp 远程DB访问(跨服务器创建DB连接) DIV居中(水平&垂直) PHPMailer&Gmail FOR vROW_CUR IN vCUR(PARA1, PARA2) LOOP の使い方 JavaScript Trim IE6中,一个Button同时打开两个下载窗口,并且可以自动关闭 Oracle中复制表结构和表数据 Excel 列号转换为字母(VBA) Excel列字母与数字的转换 VS在进行调试时,不能调试的原因列举如下 Create User OS中9个是危险较大的服务 .Net开发人员应该下载的十种必备工具 IIS 中 "另一个程序正在使用此文件,进程无法访问!" JS页面刷新 批处理命令学习(二) 批处理命令学习(一) Oracle: import tables use .dmp file in PL/SQL Developer
clean_vss_files.bat
10cn.net · 2007-05-07 · via 博客园 - 10cn.net

@echo off
echo This batch file is used to clean the VSS files (e.g. *.scc
, *.vspscc, etc.).
echo.
echo WARNING:
echo 
1. You should always make a copy to do this operation because cleaning is 
echo    NON reversible.
echo 
2. You should first open VS.NET IDE and disconnect the solution or project
echo    with the VSS repository.
echo 
3. Your VS.NET IDE is currently shutted down.
echo.
echo Make sure you've finished the above preparations. Otherwise
, you should
echo click the 'X' button on the top-right corner of this DOS window to stop
echo this operation.
echo.

set /P continue

=Are you sure you want to Continue? (YN)

if 

"%continue%" == "n" goto end
if 
"%continue%" == "N" goto end

echo.
echo Deleting *.scc

, *.vspscc, *.user 
echo.

del *.suo /q /f /ah
del *.user /s /q /f
del *.scc /s /q /f
del *.vssscc /s /q /f
del *.vspscc /s /q /f

echo.
echo Deleting obj and bin folders 
echo.

if exist .\MIC.RETSS.Common_DataObjects\bin rmdir .\MIC.RETSS.Common_DataObjects\bin /s /q
if exist .\MIC.RETSS.Common_DataObjects\obj rmdir .\MIC.RETSS.Common_DataObjects\obj /s /q

if exist .\MIC.RETSS.Common_Controls\bin rmdir .\MIC.RETSS.Common_Controls\bin /s /q
if exist .\MIC.RETSS.Common_Controls\obj rmdir .\MIC.RETSS.Common_Controls\obj /s /q

echo Finished.
echo.

pause

:end