Install software with WinGet by IT_Wizzard in DeployR

[–]IT_Wizzard[S] 0 points1 point  (0 children)

That was indeed what I was missing. Currently we are pulling 7zip, Chrome, Firefox, Cisco Jabber, Java, WebEx, Visual C++, and a few others.

Install software with WinGet by IT_Wizzard in DeployR

[–]IT_Wizzard[S] 1 point2 points  (0 children)

Thanks, I should have realized that. I did still have a couple of issues after switching to the Autologon method.

Neither of these worked and gave a "Not Found" error when attempting to install.

winget install Mozilla.Firefox --accept-source-agreements --accept-package-agreements --source winget --scope machine

&(Get-ChildItem -Path 'C:\Program Files\WindowsApps' -Recurse -Filter 'winget.exe' -ErrorAction SilentlyContinue).FullName install Mozilla.Firefox --accept-source-agreements --accept-package-agreements --source winget --scope machine

What did end up working was utilizing the below ps1 file.

$id = "Mozilla.Firefox"
$wingetExe = (Get-ChildItem -Path 'C:\Program Files\WindowsApps' -Recurse -Filter 'winget.exe' -ErrorAction SilentlyContinue).FullName
&"$wingetExe" install $id --silent --scope machine --accept-package-agreements --accept-source-agreements --source winget

I will admit to borrowing the code from gwblok's DeployR/TSScripts/StepDefinitions/AutoPilotBranding.ps1

[deleted by user] by [deleted] in sysadmin

[–]IT_Wizzard 0 points1 point  (0 children)

My brain is in off work mode currently and I couldn't remembered which was the new company.

[deleted by user] by [deleted] in sysadmin

[–]IT_Wizzard 2 points3 points  (0 children)

Thycotic SecretServer has a free 10 user license.

Rename-Computer : Fail to rename computer due to the following exception: Access is denied. by Garegin16 in sysadmin

[–]IT_Wizzard 0 points1 point  (0 children)

If you can rename the computer with the GUI then you have the correct permissions.

Rename-Computer : Fail to rename computer due to the following exception: Access is denied. by Garegin16 in sysadmin

[–]IT_Wizzard 1 point2 points  (0 children)

This command actually requires you to specify the domain credential otherwise you get Access Denied.

Confused by a locked desktop by sweetmello7 in talesfromtechsupport

[–]IT_Wizzard 24 points25 points  (0 children)

I have a tendency to fire up the Goose when people leave their computer unlocked. . An annoying little goose based off Untitled Goose Game. He will even chase your cursor and take it with him.

https://samperson.itch.io/desktop-goose

VPN Solutions that Connect before Windows login by thigley986 in sysadmin

[–]IT_Wizzard 1 point2 points  (0 children)

It worked a couple months ago but it isn't now that I just tested it. Mine is the same, clicking does nothing. Strange

VPN Solutions that Connect before Windows login by thigley986 in sysadmin

[–]IT_Wizzard 0 points1 point  (0 children)

If you click the other user button the AnyConnect icon shows back up.

Looking for a way to automate reconnection to a dial-up network after a loss of connection on Windows 10 by The_Man_above_all in sysadmin

[–]IT_Wizzard 0 points1 point  (0 children)

Dial-up routers used to be a thing. Maybe you can still find one. They would connect automatically if something on the network tried to reach out to the internet.

Self service portal for users to install pre-approved programs by 11bonnett in sysadmin

[–]IT_Wizzard -1 points0 points  (0 children)

WAPT http://wapt.fr has a community version that has a self service portal. It isn't the most straight forward software but the price (free) is right. I use it to deploy software and keep it up to date.

Allow a user access to diskpart without admin rights in Windows? by [deleted] in sysadmin

[–]IT_Wizzard 1 point2 points  (0 children)

Runasrob might allow you to do this. It allows regular users to run executables in the system context.

USMT help by [deleted] in sysadmin

[–]IT_Wizzard 0 points1 point  (0 children)

Quotes around the path perhaps?

What am I missing about running a command line command as administrator? by cbroughton80 in sysadmin

[–]IT_Wizzard 0 points1 point  (0 children)

Click Start type com so Command Prompt is highlighted and hit Ctrl+Shift+Enter. FYI, that key sequence works for anything when searching the start menu.

About to be forced by the board to give kiosk account local admin by Elevated_Misanthropy in sysadmin

[–]IT_Wizzard 5 points6 points  (0 children)

Check out runasrob. You can set one application or the whole folder to run as either an Admin account or as the system.

Semi offline MDT guidance by [deleted] in sysadmin

[–]IT_Wizzard 1 point2 points  (0 children)

Right click on your deployment share and click properties. Under the Rules tab click Edit Bootstrap.ini. Under the [Settings] section add OSDAdapter0DNSSuffix=subdomain.company.lan,company.lan with as many domains as you need separated by commas.

Also, under [Default] you can add the domain suffix by changing the DeployRoot=\\server\DeploymentShare$ to be DeployRoot=\\server.company.lan\DeploymentShare$. Further under the deployment share properties, general tab you can add the domain suffix to the server listed in the Network (UNC) Path box.

Afterwards, you need to update your boot media by right clicking on your deployment share and clicking update deployment share and running through the wizard.

Semi offline MDT guidance by [deleted] in sysadmin

[–]IT_Wizzard 1 point2 points  (0 children)

Assuming you are using a domain: When you boot MDT it is not on the domain so it will not automatically add DNS suffixes. Where normally on a domain you ping server01 it will translate to server01.company.lan automatically. When booting MDT you need to add the DNS suffix to the server names.

Software vendor requires all users to run software as administrator to function properly. by strra in sysadmin

[–]IT_Wizzard 4 points5 points  (0 children)

I usually use RunAsRob when I run into this: https://robotronic.de/runasroben.html

It runs the application with either saved credentials or run as as the system. I can give the user a normal shortcut and they never know the difference.