常用DOS命令

2021-09-08 08:48:48 字數 913 閱讀 1890

iis應用改程式池

修改應用程式池標識:

服務exec master..xp_cmdshell 'sc query bocautodownservice'

exec master..xp_cmdshell 'sc stop bocautodownservice'

exec master..xp_cmdshell 'sc start bocautodownservice'

讀取檔案

exec master..xp_cmdshell 'type "d:\program files (x86)\預設公司名稱\bocautodownsetup\logs\服務日誌.txt"'

載入資料夾內容

exec master..xp_cmdshell 'dir "d:\program files (x86)\預設公司名稱\bocautodownsetup\"'

遠端檔案複製

master..xp_cmdshell 'net use y: \\192.168.1.333\sourcepath pwd /user:username'

exec master..xp_cmdshell 'xcopy "d:\program files (x86)\預設公司名稱\bocautodownsetup\common.dll" y:\'

刪除檔案

exec master..xp_cmdshell 'del "d:\program files (x86)\預設公司名稱\bocautodownsetup\common.dll"'

重啟iis

然後輸入iisreset /stop 停止iis

輸入iisreset / start 啟用iis

重啟pc
shutdown.exe -r -t 5

常用DOS命令

dos現在很少有人學會了。記得以前在dos裡全是dos命令,我有的也忘記了,下面收集了一些關於dos的東東,供大家學習學習。當然我自己也在學習 建立到遠端主機的連線 net use ip ipc password user username 建立新使用者 net user username pass...

常用DOS命令

type a.txt 顯示a.txt文件內容 ren e a b.txt a.txt 把b.txt 重新命名為 a.txt md a 建立a資料夾 rd a 刪除a檔案 cls 清屏 cd e 進入e盤 cd.返回上一目錄 cd 返回到當前根目錄 如果要進入某個資料夾 step1 複製該資料夾的路徑...

常用DOS命令

最近專案用到一些dos命令列,和linux下的常用命令對比總結下。與linux一樣 在檔案之間切換 cd dos在不同碟符之間切換需要 d,即 cd d c folder 新建資料夾 mkdir foldername 與linux不同 新建檔案 例如1.txt linux vim 1.txt 或 t...