|
CMD创建快捷方式如下
=========================================================================
:: Fbinst Plus 在PE下的应用举例 - 自动加载PETOOLS
:: An example of how to use FbinstPlus on PE - Autoload PETOOLS
:: 自动搜索ud盘的PETOOLS文件夹
:: 根据PETOOLS文件夹大小自动创建内存盘(实验证明要内存盘的大小要大于文件总大小)
:: 导出ud内的PETOOLS文件夹,保存到内存盘中
:: 在“「开始」菜单”中创建程序的快捷方式
:: 注意,本脚本未考虑内存不足的情况
:: PE需要内置fbinst plus版本、imdisk的支持
:: It needs fbinst plus and imdisk.
:: By Plantsoot@bbs.wuyou.net 2011-3-7
::----- find & export & create shortcuts for PETOOLS --------------
@echo off&setlocal ENABLEDELAYEDEXPANSION
fbinst (ud) filesize "PETOOLS/*"
set /a size=%errorlevel%*105/100
for %%i in (Z W V U T R Q P) do if not exist %%i:\nul (
set udtooldrv=%%i:
)
fbinst --udlist
if %errorlevel%==1 imdisk -a -s %size%K -m %udtooldrv% -p "/FS:FAT /Y /Q"
fbinst (ud) output "PETOOLS/*" %udtooldrv%/
:: --------- 中文PE ----------------
set startmenu=%USERPROFILE%\「开始」菜单\
if exist "%startmenu%" (
echo 正在搜索根目录包含PETOOLS文件夹的盘符
for %%a in (A B C D E F G H I G K L M N O P Q R S T U V W X Y Z) DO (
dir /a %%a:\PETOOLS >nul 2>nul&&(
echo 正在创建 %%a:\PETOOLS 的快捷方式,请稍候……
for /f "delims=" %%b in ('dir %%a:\PETOOLS /a-d /b /s') do (
mkdir "%startmenu%%%~pb"
if /i "%%~xb"==".exe" (
echo [InternetShortcut] >"%startmenu%%%~pb\%%~nxb.url"
echo URL="%%b">>"%startmenu%%%~pb\%%~nxb.url"
echo IconIndex=0 >>"%startmenu%%%~pb\%%~nxb.url"
echo IconFile=%%b>>"%startmenu%%%~pb\%%~nxb.url"
) else (
if /i "%%~xb"==".txt" (
echo [InternetShortcut] >"%startmenu%%%~pb\%%~nxb.url"
echo URL="%%b">>"%startmenu%%%~pb\%%~nxb.url"
echo IconIndex=70 >>"%startmenu%%%~pb\%%~nxb.url"
echo IconFile=shell32.dll>>"%startmenu%%%~pb\%%~nxb.url"
) else (
if /i "%%~xb"==".cmd" (
echo [InternetShortcut] >"%startmenu%%%~pb\%%~nxb.url"
echo URL="%%b">>"%startmenu%%%~pb\%%~nxb.url"
echo IconIndex=71 >>"%startmenu%%%~pb\%%~nxb.url"
echo IconFile=shell32.dll>>"%startmenu%%%~pb\%%~nxb.url"
) else (
if /i "%%~xb"==".bat" (
echo [InternetShortcut] >"%startmenu%%%~pb\%%~nxb.url"
echo URL="%%b">>"%startmenu%%%~pb\%%~nxb.url"
echo IconIndex=71 >>"%startmenu%%%~pb\%%~nxb.url"
echo IconFile=shell32.dll>>"%startmenu%%%~pb\%%~nxb.url"
) else (
echo [InternetShortcut] >"%startmenu%%%~pb\%%~nxb.url"
echo URL="%%b">>"%startmenu%%%~pb\%%~nxb.url"
echo IconIndex=0 >>"%startmenu%%%~pb\%%~nxb.url"
echo IconFile=%%b>>"%startmenu%%%~pb\%%~nxb.url"
)
)
)
)
)
)
)
)
======================================================================================
[ 本帖最后由 haiou327 于 2011-3-8 11:20 编辑 ] |
|