Jump to content

zozoz2000

Member
  • Posts

    1
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Hungary

Posts posted by zozoz2000

  1. 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..

×
×
  • Create New...