WPI 7.7.0 Buglist in Windows Post-Install Wizard (WPI) Posted March 24, 2010 Hi all!I found a bug in the "configwizard_createshortcut.js".When I use the CreateShortcut() function with SubFolder option(folder doesn't exist yet) it doesn't create new SubFolder folder.So i changed the js script to me: if (SpecialFolder=="Favorites" || SpecialFolder=="MyDocuments" || SpecialFolder=="StartMenu" || SpecialFolder=="Programs" || SpecialFolder=="AllUsersStartMenu" || SpecialFolder=="AllUsersPrograms") { if(!(fso.FolderExists(strSpecialFolders+"\\"+SubFolder)) && SubFolder.length != 0) { fso.CreateFolder(strSpecialFolders+"\\"+SubFolder); } txt +=SubFolder+"\\"; }Sorry for my bad english.. 0
WPI 7.7.0 Buglist
in Windows Post-Install Wizard (WPI)
Posted
Hi all!
I found a bug in the "configwizard_createshortcut.js".
When I use the CreateShortcut() function with SubFolder option(folder doesn't exist yet) it doesn't create new SubFolder folder.
So i changed the js script to me:
Sorry for my bad english..