|  | 
 
| tireless 银牌会员
 
      
 
 
 
 积分 2025
 发帖 1122
 注册 2007-9-5
 状态 离线
 | 
| 『楼 主』:
 [已解决]如何创建“显示桌面.scf”到快速启动文件夹目录
 
使用 LLM 解释/回答一下 
 
 
快速文件夹在C:\Documents and Settings\用户名\Application Data\ Microsoft\Internet Explorer\Quick Launch
 问题是不知道用户名是什么...
 
 Last edited by tireless on 2007-12-2 at 08:06 PM ]
 
The quick launch folder is at C:\Documents and Settings\Username\Application Data\Microsoft\Internet Explorer\Quick Launch
 The problem is not knowing what the username is...
 
 Last edited by tireless on 2007-12-2 at 08:06 PM ]
 
 
 
 |  | 
|  2007-12-3 12:09 |  | 
|  | 
 
| lxmxn 版主
 
         
 
 
 积分 11386
 发帖 4938
 注册 2006-7-23
 状态 离线
 | 
| 『第 2 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
echo %APPDATA%\Microsoft\Internet Explorer\Quick Launch
 
命令行输入set命令查看环境变量。 
echo %APPDATA%\Microsoft\Internet Explorer\Quick Launch
 
Enter the set command in the command line to view environment variables. 
 
 
 |  | 
|  2007-12-3 12:13 |  | 
|  | 
 
| ansipeter 中级用户
 
    替身
 
 
 
 积分 269
 发帖 130
 注册 2007-3-23
 状态 离线
 | 
| 『第 3 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
@echo off&setlocal&title 创建"显示桌面"快捷方式
 >>显示桌面.scf echo
 >>显示桌面.scf echo Command=2
 >>显示桌面.scf echo IconFile=explorer.exe,3
 >>显示桌面.scf echo
 >>显示桌面.scf echo Command=ToggleDesktop
 
 
```@echo off&setlocal&title Create "Show Desktop" Shortcut
 >>Show Desktop.scf echo
 >>Show Desktop.scf echo Command=2
 >>Show Desktop.scf echo IconFile=explorer.exe,3
 >>Show Desktop.scf echo
 >>Show Desktop.scf echo Command=ToggleDesktop
 ```
 
 
 
 
 |  
                  |  *讨厌的9527*
 |  | 
|  2007-12-3 12:58 |  | 
|  | 
 
| tireless 银牌会员
 
      
 
 
 
 积分 2025
 发帖 1122
 注册 2007-9-5
 状态 离线
 | 
| 『第 4 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
"命令行输入set命令查看环境变量。 "好东西。之前我还在“收集环境变量”-_-|||
 
 谢谢两位。
 
 Last edited by tireless on 2007-12-2 at 05:12 PM ]
 
"Enter the command `set` in the command line to view environment variables.  Good stuff. I was still "collecting environment variables" before -_-|||
 
 Thanks to both of you.
 
 Last edited by tireless on 2007-12-2 at 05:12 PM ]
 
 
 
 |  | 
|  2007-12-3 13:10 |  | 
|  | 
 
| tireless 银牌会员
 
      
 
 
 
 积分 2025
 发帖 1122
 注册 2007-9-5
 状态 离线
 | 
| 『第 5 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
那要怎么创建到%APPDATA%\Microsoft\Internet Explorer\Quick Launch? 
Then how to create to %APPDATA%\Microsoft\Internet Explorer\Quick Launch? 
 
 
 |  | 
|  2007-12-3 13:15 |  | 
|  | 
 
| lxmxn 版主
 
         
 
 
 积分 11386
 发帖 4938
 注册 2006-7-23
 状态 离线
 | 
| 『第 6 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
把3楼生成的文件拖到2楼显示的路径下面就可以了。 
Just drag the file generated by the 3rd floor to the path displayed by the 2nd floor. 
 
 
 |  | 
|  2007-12-3 13:48 |  | 
|  | 
 
| tireless 银牌会员
 
      
 
 
 
 积分 2025
 发帖 1122
 注册 2007-9-5
 状态 离线
 | 
| 『第 7 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
直接创建是这样?>>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\显示桌面.scf echo
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\显示桌面.scf echo Command=2
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\显示桌面.scf echo IconFile=explorer.exe,3
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\显示桌面.scf echo
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\显示桌面.scf echo Command=ToggleDesktop
 
 有没有更简洁的代码?
 
 弱弱的问下,可以让它出现在快速启动栏最左侧吗?
 
 Last edited by tireless on 2007-12-2 at 06:17 PM ]
 
Is creating directly like this?>>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\Show Desktop.scf echo
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\Show Desktop.scf echo Command=2
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\Show Desktop.scf echo IconFile=explorer.exe,3
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\Show Desktop.scf echo
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\Show Desktop.scf echo Command=ToggleDesktop
 
 Is there a more concise code?
 
 Weakly ask, can it appear on the far left of the quick launch bar?
 
 Last edited by tireless on 2007-12-2 at 06:17 PM ]
 
 
 
 |  | 
|  2007-12-3 13:58 |  | 
|  | 
 
| echo 初级用户
 
   
 
 
 
 积分 148
 发帖 69
 注册 2006-11-23
 状态 离线
 | 
| 『第 8 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
三楼才是正解…… 
The third floor is the correct answer... 
 
 
 |  | 
|  2007-12-3 15:08 |  | 
|  | 
 
| summerbreeze 新手上路
 
  
 
 
 
 积分 16
 发帖 6
 注册 2007-12-3
 状态 离线
 | 
| 『第 9 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
@echo offif exist 显示桌面.scf del 显示桌面.scf
 >>显示桌面.scf echo
 >>显示桌面.scf echo Command=2
 >>显示桌面.scf echo IconFile=explorer.exe,3
 >>显示桌面.scf echo
 >>显示桌面.scf echo Command=ToggleDesktop
 copy 显示桌面.scf "%APPDATA%\Microsoft\Internet Explorer\Quick Launch" /y>nul
 
```@echo offif exist 显示桌面.scf del 显示桌面.scf
 >>显示桌面.scf echo
 >>显示桌面.scf echo Command=2
 >>显示桌面.scf echo IconFile=explorer.exe,3
 >>显示桌面.scf echo
 >>显示桌面.scf echo Command=ToggleDesktop
 copy 显示桌面.scf "%APPDATA%\Microsoft\Internet Explorer\Quick Launch" /y>nul
 
 
 
 |  | 
|  2007-12-3 15:25 |  | 
|  | 
 
| lxmxn 版主
 
         
 
 
 积分 11386
 发帖 4938
 注册 2006-7-23
 状态 离线
 | 
| 『第 10 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
Originally posted by tireless at 2007-12-3 13:58:直接创建是这样?
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\显示桌面.scf echo
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch" ...
 
要更简介的干嘛?
 more +1 < %0 >"%APPDATA%\Microsoft\Internet Explorer\Quick Launch\显示桌面1.scf" && exit /b 0
 
 Command=2
 IconFile=explorer.exe,3
 
 Command=ToggleDesktop
 
 
要调整位置自己用鼠标拖动一下,目前用批处理调整位置还不会,o_O
 
 Last edited by lxmxn on 2007-12-3 at 03:27 PM ] 
Originally posted by tireless at 2007-12-3 13:58:Is this how to create it directly?
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch"\Show Desktop.scf echo
 >>"%APPDATA%\Microsoft\Internet Explorer\Quick Launch" ...
 
Why make it more concise?
 more +1 < %0 >"%APPDATA%\Microsoft\Internet Explorer\Quick Launch\Show Desktop1.scf" && exit /b 0
 
 Command=2
 IconFile=explorer.exe,3
 
 Command=ToggleDesktop
 
 
To adjust the position, just drag it with the mouse. Currently, I don't know how to adjust the position with a batch script, o_O
 
 Last edited by lxmxn on 2007-12-3 at 03:27 PM ] 
 
 
 |  | 
|  2007-12-3 15:26 |  | 
|  | 
 
| everest79 金牌会员
 
       一叶枝头,万树皆春
 
 
 
 积分 2564
 发帖 1127
 注册 2006-12-25
 状态 离线
 |  | 
|  2007-12-3 15:35 |  | 
|  | 
 
| lxmxn 版主
 
         
 
 
 积分 11386
 发帖 4938
 注册 2006-7-23
 状态 离线
 | 
| 『第 12 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
Originally posted by everest79 at 2007-12-3 15:35:调整什么位置?
 
看7楼的红字。
 弱弱的问下,可以让它出现在快速启动栏最左侧吗? 
Originally posted by everest79 at 2007-12-3 15:35:Which position to adjust?
 
Look at the red words on floor 7.
 Weakly asking, can it appear on the far left of the quick launch bar? 
 
 
 |  | 
|  2007-12-3 15:47 |  | 
|  | 
 
| tireless 银牌会员
 
      
 
 
 
 积分 2025
 发帖 1122
 注册 2007-9-5
 状态 离线
 | 
| 『第 13 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
哦了。看不懂第一行代码。
 Last edited by tireless on 2007-12-2 at 08:15 PM ]
 
Okay. Can't understand the first line of code.
 Last edited by tireless on 2007-12-2 at 08:15 PM ]
 
 
 
 |  | 
|  2007-12-3 16:05 |  | 
|  | 
 
| everest79 金牌会员
 
       一叶枝头,万树皆春
 
 
 
 积分 2564
 发帖 1127
 注册 2006-12-25
 状态 离线
 | 
| 『第 14 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
这个问题我原来也有过,很奇怪,任务栏中的工具栏设置保存是受桌面设置是否保存来约束的,但我导出当前的桌面设置但找不到任务栏的相关设置 
I used to have this problem too. It's very strange. The saving of the toolbar settings in the taskbar is constrained by whether the desktop settings are saved, but I exported the current desktop settings and couldn't find the relevant settings for the taskbar 
 
 
 |  | 
|  2007-12-3 16:46 |  | 
|  | 
 
| INeverAsk 初级用户
 
   
 
 
 
 积分 97
 发帖 42
 注册 2006-10-5
 状态 离线
 | 
| 『第 15 楼』:
 
 
使用 LLM 解释/回答一下 
 
 
刚好我的一台主机的快速显示桌面没了,拿来试试 
Just trying it out since the quick show desktop on one of my hosts is gone 
 
 
 |  | 
|  2008-1-22 09:26 |  |