tkmadison Posted December 11, 2005 Posted December 11, 2005 Here's a question (yes, I've done a search and not yet found anything satisfactory) - is it possible to have all my UA CD software which is installed via RunOnceEx sorted into folders?Meaning I have folders within All Programs: INTERNET; MULTIMEDIA; GRAPHICS etc, etc and I want to have the automatically installed software sorted into these.I had hoped there was a way to do it through a registry tweak as there is for pinned start menu items, but so far I can't find anything.
XtremeMaC Posted December 11, 2005 Posted December 11, 2005 u could but u'd have to specify the folders to install for example when instaling office u can put installpath=c:\program files\ etc. etc. u can do this with msi and with other installers u're able to do this, with some of them u write -R in the command line to get the setup.ini file...look into the unattended guide and the forum to see which switches are accepted.so in the end yes u can accomplish it..
tkmadison Posted December 11, 2005 Author Posted December 11, 2005 (edited) u could but u'd have to specify the folders to install for example when instaling office u can put installpath=c:\program files\ etc. etc. u can do this with msi and with other installers u're able to do this, with some of them u write -R in the command line to get the setup.ini file...look into the unattended guide and the forum to see which switches are accepted.so in the end yes u can accomplish it..I know that i can set the installation directory within C:\Program Files with many installer types, but I'm wondering about customizing Start->All Programs...Which, I suppose, is c:\Documents and Settings\All Users\Start Menu\ProgramsWhere you would normally find individual folders for each application you've installed, I want to further organize them into category grouping folders.i.e.: C\Documents and Settings\All Users\Start Menu\Programs\INTERNET\Mozilla Firefox ... and so forth... Edited December 11, 2005 by tkmadison
tkmadison Posted December 11, 2005 Author Posted December 11, 2005 (edited) Here's a thought...I used regshot to look at the changes when I reshuffled the start menu and came up with a whole lot of entries in [HKEY_USERS\S-1-5-21-2025429265-2111687655-1060284298-1003\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs]Under that is every software title listed IN ADDITION to it being listed in the new folders I created.Any thoughts as to how much of this key I would need to import (provided that even worked) to get the desired result? I realize that this part of the registry is generated when a user account is created/logged into, or something like that...so if this key were to be imported in RunOnceEx would it even work properly? Edited December 11, 2005 by tkmadison
oneless Posted December 11, 2005 Posted December 11, 2005 i do that . in my way . more easy than reg settings . (or maybe i do not understant correct your needs)c:\Documents and Settings\All Users\Start Menu\Programsis JUST a folder , who can be accessed with a .cmd so this is doing my cleanup.cmdi create a folder named <APPlications> and i move there all my uA apps links.@echo offecho .@if not exist "%AllUsersProfile%\Start Menu\APPlications" MD "%AllUsersProfile%\Start Menu\APPlications"@if not exist "%AllUsersProfile%\Start Menu\APPlications\Microsoft Internet" MD "%AllUsersProfile%\Start Menu\APPlications\Microsoft Internet"@if not exist "%UserProfile%\Start Menu\APPlications" MD "%UserProfile%\Start Menu\APPlications"@if not exist "%UserProfile%\Start Menu\APPlications\Microsoft Internet" MD "%UserProfile%\Start Menu\APPlications\Microsoft Internet"echo .@if exist "%UserProfile%\Start Menu\Programs\Internet Explorer.lnk" Move "%UserProfile%\Start Menu\Programs\Internet Explorer.lnk" "%UserProfile%\Start Menu\Applications\Microsoft Internet" @if exist "%UserProfile%\Start Menu\Programs\Remote Assistance.lnk" Move "%UserProfile%\Start Menu\Programs\Remote Assistance.lnk" "%UserProfile%\Start Menu\Applications\Microsoft Internet" echo .@if exist "%UserProfile%\Start Menu\Programs\Outlook Express.lnk" copy "%UserProfile%\Start Menu\Programs\Outlook Express.lnk" "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Outlook Express.lnk"@if exist "%UserProfile%\Start Menu\Programs\Outlook Express.lnk" Move "%UserProfile%\Start Menu\Programs\Outlook Express.lnk" "%UserProfile%\Start Menu\Applications\Microsoft Internet" @if exist "%UserProfile%\Start Menu\Applications\Microsoft Internet\Outlook Express.lnk" copy "%UserProfile%\Start Menu\Applications\Microsoft Internet\Outlook Express.lnk" "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Outlook Express.lnk"echo .@if exist "%UserProfile%\Start Menu\Programs\Windows Media Player.lnk" Move "%UserProfile%\Start Menu\Programs\Windows Media Player.lnk" "%UserProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Programs\MSN Explorer.lnk" Move "%AllUsersProfile%\Start Menu\Programs\MSN Explorer.lnk" "%AllUsersProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\MSN.lnk" Move "%AllUsersProfile%\Start Menu\Programs\MSN.lnk" "%AllUsersProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\Windows Messenger.lnk" Move "%AllUsersProfile%\Start Menu\Programs\Windows Messenger.lnk" "%AllUsersProfile%\Start Menu\Applications" echo .@if exist "%AllUsersProfile%\Start Menu\Programs\Windows Movie Maker.lnk" Move "%AllUsersProfile%\Start Menu\Programs\Windows Movie Maker.lnk" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Windows Update.lnk" Move "%AllUsersProfile%\Start Menu\Windows Update.lnk" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Windows Catalog.lnk" Move "%AllUsersProfile%\Start Menu\Windows Catalog.lnk" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Set Program Access and Defaults.lnk" Move "%AllUsersProfile%\Start Menu\Set Program Access and Defaults.lnk" "%AllUsersProfile%\Start Menu\Applications" echo .echo start %CDROM%\WinApp\_APPlications\Instalate\MUTA_APPlications_AdobeR7.cmdecho start %CDROM%\WinApp\_APPlications\Instalate\MUTA_APPlications_bsplayer_PRO.cmdecho .@if exist "%UserProfile%\Start Menu\Programs\Webteh" MOVE "%UserProfile%\Start Menu\Programs\Webteh" "%UserProfile%\Start Menu\APPlications"@if exist "%UserProfile%\Start Menu\APPlications\Webteh" Rename "%UserProfile%\Start Menu\APPlications\Webteh" "BSplayer"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\PrintMe Internet Printing" Move "%AllUsersProfile%\Start Menu\Programs\PrintMe Internet Printing" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Programs\Adobe Reader 7.0.lnk" Move "%AllUsersProfile%\Start Menu\Programs\Adobe Reader 7.0.lnk" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Desktop\Adobe Reader 7.0.lnk" del "%AllUsersProfile%\Desktop\Adobe Reader 7.0.lnk"echo .@if not exist "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Windows Media Player.lnk" copy "%UserProfile%\Start Menu\Applications\Windows Media Player.lnk" "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Windows Media Player.lnk"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\Adobe Reader 6.0.lnk" Move "%AllUsersProfile%\Start Menu\Programs\Adobe Reader 6.0.lnk" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Desktop\Adobe Reader 6.0.lnk" del "%AllUsersProfile%\Desktop\Adobe Reader 6.0.lnk"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\K-Lite Codec Pack" MOVE "%AllUsersProfile%\Start Menu\Programs\K-Lite Codec Pack" "%AllUsersProfile%\Start Menu\APPlications" @if exist "%AllUsersProfile%\Start Menu\Programs\ACE Mega CoDecS Pack" MOVE "%AllUsersProfile%\Start Menu\Programs\ACE Mega CoDecS Pack" "%AllUsersProfile%\Start Menu\APPlications"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\CyberLink DVD Solution\PowerDVD\PowerDVD.lnk" copy "%AllUsersProfile%\Start Menu\Programs\CyberLink DVD Solution\PowerDVD\PowerDVD.lnk" "%AllUsersProfile%\Desktop"@if exist "%AllUsersProfile%\Start Menu\Programs\CyberLink DVD Solution" Move "%AllUsersProfile%\Start Menu\Programs\CyberLink DVD Solution" "%AllUsersProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\CyberLink PowerDVD" Move "%AllUsersProfile%\Start Menu\Programs\CyberLink PowerDVD" "%AllUsersProfile%\Start Menu\Applications"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\Nero 7 Ultra Edition" Move "%AllUsersProfile%\Start Menu\Programs\Nero 7 Ultra Edition" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Applications\Nero 7 Ultra Edition\Data\Nero Burning ROM.lnk" copy "%AllUsersProfile%\Start Menu\Applications\Nero 7 Ultra Edition\Data\Nero Burning ROM.lnk" "%AllUsersProfile%\Desktop"@if exist "%AllUsersProfile%\Start Menu\Programs\Nero" Move "%AllUsersProfile%\Start Menu\Programs\Nero" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Applications\Nero\Nero 6 Ultra Edition\Nero Burning ROM.lnk" copy "%AllUsersProfile%\Start Menu\Applications\Nero\Nero 6 Ultra Edition\Nero Burning ROM.lnk" "%AllUsersProfile%\Desktop"@if exist "%AllUsersProfile%\Start Menu\Applications\Nero\Nero 6 Enterprise Edition\Nero Burning ROM.lnk" copy "%AllUsersProfile%\Start Menu\Applications\Nero\Nero 6 Enterprise Edition\Nero Burning ROM.lnk" "%AllUsersProfile%\Desktop"@if exist "%AllUsersProfile%\Desktop\Nero StartSmart.lnk" del "%AllUsersProfile%\Desktop\Nero StartSmart.lnk"@if exist "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Nero StartSmart.lnk" del "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Nero StartSmart.lnk"@if exist "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Nero Home.lnk" del "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Nero Home.lnk"echo .@if exist "%UserProfile%\Start Menu\Programs\Winace" MOVE "%UserProfile%\Start Menu\Programs\Winace" "%UserProfile%\Start Menu\APPlications"@if exist "%AllUsersProfile%\Start Menu\Programs\Winace" MOVE "%AllUsersProfile%\Start Menu\Programs\Winace" "%AllUsersProfile%\Start Menu\APPlications"@if exist "%AllUsersProfile%\Start Menu\WinAce Archiver.lnk" del "%AllUsersProfile%\Start Menu\WinAce Archiver.lnk"echo .@if exist "%UserProfile%\Start Menu\Programs\Winamp" MOVE "%UserProfile%\Start Menu\Programs\Winamp" "%UserProfile%\Start Menu\APPlications"@if exist "%UserProfile%\Desktop\Winamp.lnk" del "%UserProfile%\Desktop\Winamp.lnk"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\WinRAR" MOVE "%AllUsersProfile%\Start Menu\Programs\WinRAR" "%AllUsersProfile%\Start Menu\APPlications"@if exist "%UserProfile%\Start Menu\Programs\WinRAR" MOVE "%UserProfile%\Start Menu\Programs\WinRAR" "%UserProfile%\Start Menu\APPlications"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\Pinnacle Hollywood FX" MOVE "%AllUsersProfile%\Start Menu\Programs\Pinnacle Hollywood FX" "%AllUsersProfile%\Start Menu\APPlications"@if exist "%AllUsersProfile%\Start Menu\Programs\Studio 8" MOVE "%AllUsersProfile%\Start Menu\Programs\Studio 8" "%AllUsersProfile%\Start Menu\APPlications"echo .@if exist "%AllUsersProfile%\Start Menu\WinZip.lnk" del "%AllUsersProfile%\Start Menu\WinZip.lnk"@if exist "%AllUsersProfile%\Desktop\WinZip.lnk" del "%AllUsersProfile%\Desktop\WinZip.lnk"@if exist "%AllUsersProfile%\Start Menu\Programs\WinZip" Move "%AllUsersProfile%\Start Menu\Programs\WinZip" "%AllUsersProfile%\Start Menu\Applications"echo .@if exist "%AllUsersProfile%\Start Menu\programs\Microsoft Office" move "%AllUsersProfile%\Start Menu\programs\Microsoft Office" "%AllUsersProfile%\Start Menu\APPlications"@if exist "%AllUsersProfile%\Start Menu\New Office Document.lnk" del "%AllUsersProfile%\Start Menu\New Office Document.lnk"@if exist "%AllUsersProfile%\Start Menu\Open Office Document.lnk" del "%AllUsersProfile%\Start Menu\Open Office Document.lnk"@if exist "%AllUsersProfile%\Start Menu\APPlications\Microsoft Office\Microsoft Office Excel 2003.lnk" @if not exist "%AllUsersProfile%\Desktop\Excel 2003.lnk" copy "%AllUsersProfile%\Start Menu\APPlications\Microsoft Office\Microsoft Office Excel 2003.lnk" "%AllUsersProfile%\Desktop\Excel 2003.lnk"@if exist "%AllUsersProfile%\Start Menu\APPlications\Microsoft Office\Microsoft Office Word 2003.lnk" @if not exist "%AllUsersProfile%\Desktop\Word 2003.lnk" copy "%AllUsersProfile%\Start Menu\APPlications\Microsoft Office\Microsoft Office Word 2003.lnk" "%AllUsersProfile%\Desktop\Word 2003.lnk"@if exist "%AllUsersProfile%\Start Menu\APPlications\Microsoft Office\Microsoft Office PowerPoint 2003.lnk" @if not exist "%AllUsersProfile%\Desktop\PowerPoint 2003.lnk" copy "%AllUsersProfile%\Start Menu\APPlications\Microsoft Office\Microsoft Office PowerPoint 2003.lnk" "%AllUsersProfile%\Desktop\PowerPoint 2003.lnk"@if exist "%AllUsersProfile%\Start Menu\APPlications\Microsoft Office\Microsoft Office Publisher 2003.lnk" @if not exist "%AllUsersProfile%\Desktop\Publisher 2003.lnk" copy "%AllUsersProfile%\Start Menu\APPlications\Microsoft Office\Microsoft Office Publisher 2003.lnk" "%AllUsersProfile%\Desktop\Publisher 2003.lnk"echo .@if exist "%AllUsersProfile%\Desktop\Norton AntiVirus 2003 Professional Edition.lnk" copy "%AllUsersProfile%\Desktop\Norton AntiVirus 2003 Professional Edition.lnk" "%AllUsersProfile%\Desktop\Norton AntiVirus.lnk" @if exist "%AllUsersProfile%\Desktop\Norton AntiVirus 2003 Professional Edition.lnk" del "%AllUsersProfile%\Desktop\Norton AntiVirus 2003 Professional Edition.lnk"@if exist "%AllUsersProfile%\Start Menu\Programs\Norton AntiVirus" Move "%AllUsersProfile%\Start Menu\Programs\Norton AntiVirus" "%AllUsersProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\Norton Internet Security Professional" Move "%AllUsersProfile%\Start Menu\Programs\Norton Internet Security Professional" "%AllUsersProfile%\Start Menu\APPlications"@if exist "%AllUsersProfile%\Start Menu\Programs\Norton Internet Security" Move "%AllUsersProfile%\Start Menu\Programs\Norton Internet Security" "%AllUsersProfile%\Start Menu\Applications"echo .@if exist "%UserProfile%\Start Menu\Programs\Windows Media Player.lnk" Move "%UserProfile%\Start Menu\Programs\Windows Media Player.lnk" "%UserProfile%\Start Menu\Applications" echo .@if exist "%AllUsersProfile%\Start Menu\Programs\Alcohol 120%%" Move "%AllUsersProfile%\Start Menu\Programs\Alcohol 120%%" "%AllUsersProfile%\Start Menu\APPlications"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\InterVideo WinDVD 6" Move "%AllUsersProfile%\Start Menu\Programs\InterVideo WinDVD 6" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Programs\InterVideo WinDVD 7" Move "%AllUsersProfile%\Start Menu\Programs\InterVideo WinDVD 7" "%AllUsersProfile%\Start Menu\Applications" echo .@if exist "%AllUsersProfile%\Start Menu\Programs\SiS VGA Utilities" Move "%AllUsersProfile%\Start Menu\Programs\SiS VGA Utilities" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Programs\C-Media 3D Audio" Move "%AllUsersProfile%\Start Menu\Programs\C-Media 3D Audio" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Programs\Vinyl Deck" Move "%AllUsersProfile%\Start Menu\Programs\Vinyl Deck" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Programs\InterActual" Move "%AllUsersProfile%\Start Menu\Programs\InterActual" "%AllUsersProfile%\Start Menu\Applications" @if exist "%AllUsersProfile%\Start Menu\Programs\VIA" Move "%AllUsersProfile%\Start Menu\Programs\VIA" "%AllUsersProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\Realtek Sound Manager" Move "%AllUsersProfile%\Start Menu\Programs\Realtek Sound Manager" "%AllUsersProfile%\Start Menu\Applications"echo.@if exist "%AllUsersProfile%\Start Menu\Programs\IDEUtil" Move "%AllUsersProfile%\Start Menu\Programs\IDEUtil" "%AllUsersProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\Keymaestro" Move "%AllUsersProfile%\Start Menu\Programs\Keymaestro" "%AllUsersProfile%\Start Menu\Applications"@if exist "%UserProfile%\Start Menu\Programs\A4Tech Hardware" Move "%UserProfile%\Start Menu\Programs\A4Tech Hardware" "%UserProfile%\Start Menu\Applications"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\QuickTime" Move "%AllUsersProfile%\Start Menu\Programs\QuickTime" "%AllUsersProfile%\Start Menu\Applications"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\Download Accelerator" Move "%AllUsersProfile%\Start Menu\Programs\Download Accelerator" "%AllUsersProfile%\Start Menu\Applications"echo .@if exist "%UserProfile%\Start Menu\Programs\Lavasoft Ad-Aware SE Personal" Move "%UserProfile%\Start Menu\Programs\Lavasoft Ad-Aware SE Personal" "%UserProfile%\Start Menu\Applications" @if exist "%UserProfile%\Start Menu\Programs\Lavasoft Ad-Aware SE Professional" Move "%UserProfile%\Start Menu\Programs\Lavasoft Ad-Aware SE Professional" "%UserProfile%\Start Menu\Applications" @if exist "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Ad-Aware SE Personal.lnk" del "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Ad-Aware SE Personal.lnk"@if exist "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Ad-Aware SE Professional.lnk" del "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Ad-Aware SE Professional.lnk"@if exist "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Ad-Watch SE Professional.lnk" del "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\Ad-Watch SE Professional.lnk"echo .@if exist "%AllUsersProfile%\Start Menu\Programs\7-Zip" Move "%AllUsersProfile%\Start Menu\Programs\7-Zip" "%AllUsersProfile%\Start Menu\Applications"echo .@if exist "%UserProfile%\Start Menu\Programs\Startup Mechanic" move "%UserProfile%\Start Menu\Programs\Startup Mechanic" "%UserProfile%\Start Menu\Applications"@if exist "%UserProfile%\Desktop\Startup Mechanic.lnk" del "%UserProfile%\Desktop\Startup Mechanic.lnk"echo .@if exist "%UserProfile%\Start Menu\Programs\KeyMaestro" Move "%UserProfile%\Start Menu\Programs\KeyMaestro" "%UserProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\GDI Black Gold" Move "%AllUsersProfile%\Start Menu\Programs\GDI Black Gold" "%AllUsersProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\InterVideo MSIPVS" Move "%AllUsersProfile%\Start Menu\Programs\InterVideo MSIPVS" "%AllUsersProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\Elaborate Bytes" Move "%AllUsersProfile%\Start Menu\Programs\Elaborate Bytes" "%AllUsersProfile%\Start Menu\Applications"@if exist "%AllUsersProfile%\Start Menu\Programs\SlySoft" Move "%AllUsersProfile%\Start Menu\Programs\SlySoft" "%AllUsersProfile%\Start Menu\Applications"echo .REG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v WinampAgent /fREG DELETE HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v "QuickTime Task" /fREG DELETE HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run /v MsnMsgr /fREG ADD HKLM\SOFTWARE\Policies\Microsoft\Messenger\Client /v PreventAutoRun /t REG_DWORD /d 1 /fdel /Q "%UserProfile%\Recent\*.*"@if exist "%AllUsersProfile%\Start Menu\Programs\Startup\InterVideo WinCinema Manager.lnk" del "%AllUsersProfile%\Start Menu\Programs\Startup\InterVideo WinCinema Manager.lnk"@if exist "%AllUsersProfile%\Start Menu\Programs\InterVideo MSIPVS 3" move "%AllUsersProfile%\Start Menu\Programs\InterVideo MSIPVS 3" "%AllUsersProfile%\Start Menu\APPlications"@if exist "%AllUsersProfile%\Desktop\QuickTime Player.lnk" del "%AllUsersProfile%\Desktop\QuickTime Player.lnk"@if exist "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\QuickTime Player.lnk" del "%UserProfile%\Application Data\Microsoft\Internet Explorer\Quick Launch\QuickTime Player.lnk"@if exist "%AllUsersProfile%\Start Menu\Programs\Pinnacle Hollywood FX for Studio" move "%AllUsersProfile%\Start Menu\Programs\Pinnacle Hollywood FX for Studio" "%AllUsersProfile%\Start Menu\APPlications"@if exist "%AllUsersProfile%\Start Menu\Programs\Studio 9" move "%AllUsersProfile%\Start Menu\Programs\Studio 9" "%AllUsersProfile%\Start Menu\APPlications"@if exist "%AllUsersProfile%\Start Menu\Programs\Creative" move "%AllUsersProfile%\Start Menu\Programs\Creative" "%AllUsersProfile%\Start Menu\APPlications"@if exist "%AllUsersProfile%\Start Menu\Programs\PCI Audio Applications" move "%AllUsersProfile%\Start Menu\Programs\PCI Audio Applications" "%AllUsersProfile%\Start Menu\APPlications"rem ----------------------------------------------------------------------------------@if exist "%AllUsersProfile%\Start Menu\Programs\AutoIt v3" MD "%AllUsersProfile%\Start Menu\APPlications 2"@if exist "%AllUsersProfile%\Start Menu\Programs\AutoIt v3" Move "%AllUsersProfile%\Start Menu\Programs\AutoIt v3" "%AllUsersProfile%\Start Menu\Applications 2"@if exist "%AllUsersProfile%\Start Menu\Programs\WinISO" MD "%AllUsersProfile%\Start Menu\APPlications 2"@if exist "%AllUsersProfile%\Start Menu\Programs\WinISO" Move "%AllUsersProfile%\Start Menu\Programs\WinISO" "%AllUsersProfile%\Start Menu\Applications 2"@if exist "%AllUsersProfile%\Start Menu\Programs\nLite" MD "%AllUsersProfile%\Start Menu\APPlications 2"@if exist "%AllUsersProfile%\Start Menu\Programs\nLite" Move "%AllUsersProfile%\Start Menu\Programs\nLite" "%AllUsersProfile%\Start Menu\Applications 2"@if exist "%AllUsersProfile%\Start Menu\Programs\UltraISO" MD "%AllUsersProfile%\Start Menu\APPlications 2"@if exist "%AllUsersProfile%\Start Menu\Programs\UltraISO" Move "%AllUsersProfile%\Start Menu\Programs\UltraISO" "%AllUsersProfile%\Start Menu\Applications 2"@if exist "c:\Desktop\Winamp.lnk" rd /s /q "c:\Desktop"@if exist "d:\Desktop\Winamp.lnk" rd /s /q "d:\Desktop"@if exist "c:\Start Menu\Programs\Winamp\Winamp.lnk" rd /s /q "c:\Start Menu"@if exist "d:\Start Menu\Programs\Winamp\Winamp.lnk" rd /s /q "d:\Start Menu"EXITand as last operation i sort all of them withWindows Registry Editor Version 5.00[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu2\Programs]
tkmadison Posted December 11, 2005 Author Posted December 11, 2005 i do that . in my way . more easy than reg settings . (or maybe i do not understant correct your needs)c:\Documents and Settings\All Users\Start Menu\Programsis JUST a folder , who can be accessed with a .cmd so this is doing my cleanup.cmdi create a folder named <APPlications> and i move there all my uA apps links.I had been hoping for something other than a batch file to do the job, but this will likely work just fine... You'll have to excuse me, I know almost nothing about writing batch files...but how would you write the batch in order to make the folders you want to move your programs into?i.e. creating C:\Documents and Settings\All Users\Start Menu\Programs\UTILITIESand then moving programs into it.
oneless Posted December 11, 2005 Posted December 11, 2005 what you want is a CUSTOM job .so the chance to find somewhere your batch file is ... zero.you must write the code for EVERY apps you want moved (as link) , as a last task when you insyall the apps , or if you use uA mode as a last task for all your apps (recommended).(i do it in a single cleanup.cmd , as a last operation in my config.js [WPI] .)
tkmadison Posted December 12, 2005 Author Posted December 12, 2005 what you want is a CUSTOM job .so the chance to find somewhere your batch file is ... zero.you must write the code for EVERY apps you want moved (as link) , as a last task when you insyall the apps , or if you use uA mode as a last task for all your apps (recommended).(i do it in a single cleanup.cmd , as a last operation in my config.js [WPI] .)Thanks for all your help!I think this will work fine.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now