桌面快捷方式增 刪

2021-09-08 04:53:41 字數 944 閱讀 7210

我懂的,有強迫症的我們感受,正是我們孜孜不倦的去消除一切不完美的存在。

拷貝一下,下面的**儲存為:x.bat(「x」指任何符合規則的名字定義)

@echo off

:continue

echo off

echo

"***************===輸入1回車新增桌面快捷方式***************==

"echo

"**********輸入2回車刪除桌面快捷方式**********

"echo

"====輸入exit回車退出,否則迴圈====

"set /p num=選擇你的操作:if"

%num%

"=="1"

goto

addif

"%num%

"=="2"

goto

delif

"%num%

"=="

exit

"goto

endexit

:add

reg add

"hkcr\lnkfile

" /v isshortcut /f && taskkill /f /im explorer.exe &&start explorer.exe

goto

continue

:del

@echo off

reg delete

"hkcr\lnkfile

" /v isshortcut /f && taskkill /f /im explorer.exe &&start explorer.exe

goto

continue

:end

桌面快捷方式

1,廢棄 判斷是否已經建立了快捷方式 在某些機型中需要判斷 判斷是否已經建立了快捷方式 return private booleanhasshortcut title newstring null if c null c.getcount 0 public void createshortcut e...

建立桌面快捷方式

bool createdesktopshotcut cstring strname,在桌面顯示的名稱 cstring strsourcepath 檔案絕對路徑名稱 pshell release strdestdir.format s path strdestdir strdestdir strnam...

Android桌面快捷方式

我的應用程式會在第一次使用的時候在桌面建立乙個快捷方式,我建立快捷方式的 是這樣的 我的程式在第一次使用的時候會在桌面建立乙個快捷方式,如下 1 2 3 4 5 6 7 8 9 10 intent intent newintent intent.setclass this,splashactivit...