Skip to main content

All Questions

Tagged with
1 vote
0 answers
204 views

Unattended install of gui-installer over intune

Right now, I'm packaging some piece of software intune for which the developers didn't intend a silent-install-mode. Without a silent-install the manual rollout of this software would be very tiresome....
hmaier's user avatar
  • 73
-1 votes
1 answer
1k views

Installing SSMS in Windows Core

I'm trying to: start "" /w ".\smss-setup-enu19.exe" /passive ssmsinstallroot="c:\program files\ssms" but encountering this error:↓ (syntaxes using " around path and ...
mgae2m's user avatar
  • 35
1 vote
2 answers
3k views

Unattended WSL Ubuntu 18.04 installation from powershell

Scenario To automatically install and initialize WSL Ubuntu 18.04 with powershell, I am trying to initialize/set the first username and password automatically. However, when I first run the wsl from a ...
a.t.'s user avatar
  • 423
1 vote
0 answers
856 views

How to automatically enable provisioned extension in Edge?

I have created an unattended installation image of Windows 10 following Kari’s excellent guide. I have downloaded uBlock Origin package from the Store and incorporated it with Add-...
Mr. Tao's user avatar
  • 508
0 votes
1 answer
14k views

PowerShell Scripts in Windows Unattend Answer File XML

So I have a Windows 10 Unattend Answer File. I got the parts where it skips the OOBE screens, enables admin account, and copy profile. I am trying to set the answer file to run a PowerShell script to ...
ztmcoder's user avatar
  • 103
0 votes
1 answer
994 views

Not able to execute remote poweshell script in windows server 2016 unattended installation

I am trying to create unattended.xml file for windows server 2016 unattended installation where in after installing windows it should execute one powershell script located on remote samba share. I am ...
Yugendra's user avatar
0 votes
0 answers
2k views

Windows 10 unattended PowerShell script won't run

I am currently trying to improve on the the current WDS install of Windows 10 that we use for basically all schools that we do sys admin work for. The install needs to contain some apps and some ...
legopc's user avatar
  • 1
4 votes
1 answer
6k views

Running 'Start-Process' Remotely: How to Display Standard Output?

I have a PowerShell script for installing software on remote computers. To date I have been successfully using the following code: $prog = "ping" $arg = "localhost" $computername = "MACHINE01" ...
Fitzroy's user avatar
  • 331