
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-17-2020 03:59 PM
I found a way with a batch file to prompt for a "user" to pass to the command line and adds it to remote desktop users.
But can't figure out how to get it to work in Deploy. Any help would be appreciated. Thank you in advance..
Here are the contents of the AddRDUser.bat
@echo off
set /p id=Enter ID:
echo %id%
net localgroup "Remote Desktop Users" "%id%" /add
But can't figure out how to get it to work in Deploy. Any help would be appreciated. Thank you in advance..
Here are the contents of the AddRDUser.bat
@echo off
set /p id=Enter ID:
echo %id%
net localgroup "Remote Desktop Users" "%id%" /add
Labels:
- Labels:
-
General Discussion
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-19-2020 12:28 AM
Or you can deploy as a user but they won't get admin rights eg it runs with their access rights.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2020 10:17 AM
Hi Pjayme,
Deployment packages only work when executed silently, meaning that you have to make sure the command does not require user feedback.
Deployment packages only work when executed silently, meaning that you have to make sure the command does not require user feedback.
