ANN: Classic Shell - start menu and other features

OK, the problem is with the quotes. Since %3 may contain spaces, you should use "%3" in the command line. However inside the BAT file %1 must have no quotes. Here's an improved version of the BAT file:
set list=%1
set list=%list:"=%
for /F "delims=" %%i in (%list%) do del "%%i"
del %1

The first line will assign the filename to list, the second line will remove the quotes from list, and then it can be used in the for command.

Assuming your DeleteOK.vbs is more powerful than the del DOS command (maybe it takes care of read-only files, or UAC protection), you may use this line:
for /F "delims=" %%i in (%list%) do G:\...\DeleteOK.vbs "%%i"
 

My Computer My Computer

At a glance

Windows 7 Home 64, Vista Ultimate 64
Computer Manufacturer/Model Number
Me :) I build all my PCs
OS
Windows 7 Home 64, Vista Ultimate 64
Works with files, but with folders nop :) No way to delete even single folder.
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64
OS
Windows 7 Ultimate x64
Well, the del command deletes only files. If your DeleteOK.vbs can delete folders, you may try using that instead (as I suggested at the bottom of my previous post)
 

My Computer My Computer

At a glance

Windows 7 Home 64, Vista Ultimate 64
Computer Manufacturer/Model Number
Me :) I build all my PCs
OS
Windows 7 Home 64, Vista Ultimate 64
I have tryed both ways, same.
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64
OS
Windows 7 Ultimate x64
Oh, it probably should be:
for /F "delims=" %%i in (%list%) do wscript.exe G:\...\DeleteOK.vbs "%%i"
 

My Computer My Computer

At a glance

Windows 7 Home 64, Vista Ultimate 64
Computer Manufacturer/Model Number
Me :) I build all my PCs
OS
Windows 7 Home 64, Vista Ultimate 64
THANK YOU very much :) It works :)
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64
OS
Windows 7 Ultimate x64
first of, thank you for this wonderful software, I've been searching ways to revert windows 7 start menu to classic or windows xp start menu theme....

although i have so much to learn about this software of yours..

is it possible to fix freezing start menu when there's no internet connection?
its really weird when i have connection it runs well , but if i don't it freeze :shock:
 

My Computer My Computer

At a glance

Windows 7 Professional x86
OS
Windows 7 Professional x86
If you are using the latest version, it may be checking for updates.
Run Update Settings from the Classic Shell folder of the start menu and disable automatic checks.
 

My Computer My Computer

At a glance

Windows 7 Home 64, Vista Ultimate 64
Computer Manufacturer/Model Number
Me :) I build all my PCs
OS
Windows 7 Home 64, Vista Ultimate 64
Back
Top