December 5, 200817 yr Hey,How can i copy files from the windows cd to the %USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch ? I want to have some icons there after installation.The icons are in the $OEM$ map, same place as cmdlines.txtThanks in advance! Raoul
December 5, 200817 yr If you Login with a account for the first time then this folder gets overrated if windows load the settings.You can use a Batch that runs after windows login. Edited December 5, 200817 yr by Outbreaker
December 6, 200817 yr I use this at T-12 to edit quicklaunch:if not exist "%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch\cmd.lnk" shortcut.exe /F:"%USERPROFILE%\Application Data\Microsoft\Internet Explorer\Quick Launch\cmd.lnk" /A:C /T:"%SystemRoot%\system32\cmd.exe"shortcut.exe
December 6, 200817 yr If you dont want to use 3rd party apps for something as simple asadding something to Quick Launch folder, here is a VBS script thatadds Cmd Promt to the Quick Launch folder.Save As AddCmd_QLaunch.vbsOption ExplicitDim Act, ObjSC, QuickLaunch, StrCmd Set Act = CreateObject("WScript.Shell") QuickLaunch = Act.ExpandEnvironmentStrings("%AppData%\Microsoft\Internet Explorer\Quick Launch") StrCmd = Act.ExpandEnvironmentStrings("%SystemRoot%\system32\cmd.exe") Set ObjSC = Act.CreateShortcut(QuickLaunch & "\Cmd.lnk") ObjSC.Description = Act.ExpandEnvironmentStrings("%UserName%") & " Open Command Promt" ObjSC.TargetPath = StrCmd ObjSC.Save
Create an account or sign in to comment