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


0
***--------------------------
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:\(Memory Stick)上使用它

Windows 10


1
脚本的工作目录中是否有链接?另外,你的意思是.lnk?
Regejok

我如何隐藏快捷方式?我可以隐藏.text和.bat。但我无法隐藏.ink(快捷方式)
Mathias

你是什​​么意思“脚本的工作目录中的链接?还有,你的意思是.lnk?”?你的意思是快捷方式有效吗?如果是的话,它会打开logon.bat和logoff.bat。
Mathias

不,我的意思是“你的意思是.lnk”,就像在快捷方式/链接的文件扩展名中一样。 .ink没有标准的文件扩展名。工作目录或当前目录( %cd% )是批处理文件的运行位置。或 cd 进入所需的目录或使用绝对路径。 attrib +h short.lnk 隐藏文件。
Regejok

Answers:


0

不确定你做错了什么,但以下适用于Windows 10:

名为“test.cmd”的批处理文件,其快捷方式名为“test.lnk”:

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

它隐藏了快捷方式,暂停和取消隐藏快捷方式。 这适用于快捷方式和批处理文件。

1 2 3

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.