为什么脚本不隐藏 .bat 文件的快捷方式

为什么脚本不隐藏 .bat 文件的快捷方式
***--------------------------
LOGON.INK -> LOGON.BAT:
--------------------------***

@echo off

title En@rypted Passwords - Login

color 0B

taskkill /f /IM explorer.exe


*attrib +h login.ink* **(logon.bat i use .ink becuse i use icons)**    *

*attrib -h logout.ink* **(logout.bat i use .ink becuse i use icons)**    *

attrib -h Snapchat.txt

attrib -h Instagram.txt

attrib -h Google+.txt

attrib -h GMX.txt

tree C:\Program Files (x86)

cls

echo You'r now signed in.

start explorer

pause

start D:\

我有与 logoff.bat 相反的东西...我在 D:\(记忆棒)上使用它

Windows 10

答案1

不确定你做错了什么,但以下操作在 Windows 10 上有效:

批处理文件“test.cmd”及其快捷方式“test.lnk”:

attrib +h test.lnk && REM "hide file"
pause
attrib -h test.lnk && REM "unhide file"

它隐藏快捷方式、暂停并取消隐藏快捷方式。这在快捷方式和批处理文件中均有效。

1 2 3

相关内容