I'm not really sure if this is the right place to ask this question. But I want to make a script to copy the structure of installed software on the drive. The thing is, I want to have one folder with all files that are included when the software is installed on your pc, in that folder, and then I want to copy all files from that folder to C:\Program Files... and add a shortcut to start menu.
Here is the bat code:
xcopy "%~dp0Struktura" "c:\" /s /i /y
cscript.exe ".\CreateLTspiceXVIIShortcut.vbs"
and here is the vbs code:
Set WshShell = WScript.CreateObject("WScript.Shell")
Set lnk = WshShell.CreateShortcut("C:\ProgramData\Microsoft\Windows\Start Menu\Programs\LTspiceXVII.lnk")
lnk.TargetPath = "C:\Program Files\LTC\LTspiceXVII\start_pc.exe"
lnk.Arguments = ""
lnk.Description = "LTspiceXVII"
lnk.WorkingDirectory = "%ProgramFiles%\Program Files\LTC\LTspiceXVII"
lnk.IconLocation = "%ProgramFiles%\LTC\LTspiceXVII\\start_pc.exe, 0"
lnk.WindowStyle = "1"
lnk.Save
It copies all files to the right place, but it shows in cmd all process, I want to make it silent, so it won't show anything on the screen. And after that, it doesn't make a shortcut in the start menu, which well should be made. What should I do?
In files "Struktura" means "structure".
This is the content of the structure file
I hope someone understood what I meant with this.
Thanks for help in advance! :)
I am not a Windows user, but what I see directly: