How to get username with vbs

后端 未结 4 792
遥遥无期
遥遥无期 2020-12-10 13:56

So i\'m trying to move a .vbs file with .movefile line and i want to give the .vbs to me friends but in order it to work I would have to know what their username is. what wo

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-10 14:28

    In VBScript you can get the path to the current user's desktop folder via the SpecialFolders collection:

    WScript.Echo CreateObject("WScript.Shell").SpecialFolders("Desktop")
    

提交回复
热议问题