I am still very new to Powershell and using Automox with Powershell and was wondering what would be needed to create a worklet that would create a start-up item.
This is for a Papercut printing client that is run from a network share.
I would mean avoiding a mass manual install so would be very useful!
Sorry if this is not the right place for this.
Thanks!
Page 1 / 1
I did that in this worklet:
It makes a startup shortcut that points to an executable, so you could take that portion of the code. Let me know if you need assistance getting your worklet running!
Completely glanced over that! Maybe i need to get another eye test…
In my Environment it is a little different.
I have a .Lnk file on a network share that needs to be copied to the startup location on the local machine.
Do I follow the above and replace the bginfo.exe location to reference my .Lnk location?
That worked a treat! I was looking at it from completely the wrong angle. Thanks @MinnesotaJoe and @Nic!
@MinnesotaJoe is correct - worklets run as System so they don’t have any network shares, permissions or variables that you’d have logged in as you. It’s not advisable to put credentials into a worklet, so Joe’s approach is best in this situation.