[SOLVED] Creating Install scripts for Windows 10 ?

DanielIreland

Honorable
Jul 11, 2015
6
0
10,510
I am not sure if this is the correct forum, But I need some help.

In my occupation within the lumber industry, we ship afew standard PCs to our customers containing afew of our own softwares and settings.
They are almost always the same and just tedious to configure.

So i was thinking about making a baseinstall script.

It will change the PC name, change the IPs/Networkcard name,
Set the ODBC strings and create folders in C:/ and put some of our software there and change the wallpaper, also installing VNC or Teamviewer.

I do not know where to start or what to search for.

Can someone direct me to a simpleton guide? Or the right forum for this?

Thank you!
 
Solution
Powershell - cmdlets and then later scripts.

For example:

http://woshub.com/powershell-configure-windows-networking/

You can use "Get" cmdlets to learn current configuration settings. Then use "Set" to change.

Power can install applications. TeamViewer example:

https://silentinstallhq.com/teamviewer-install-and-uninstall-powershell/

Start by making a careful list of the required changes and customizations.

Then focus on the necessary cmdlet (or script) if necessary to accomplish each required change and customization - one by one.

Eventually you may be able to combine them all into a script that will automate the process and perhaps prompt you for input as the script runs.

Some, such as wallpaper, may need a...

Ralston18

Titan
Moderator
Powershell - cmdlets and then later scripts.

For example:

http://woshub.com/powershell-configure-windows-networking/

You can use "Get" cmdlets to learn current configuration settings. Then use "Set" to change.

Power can install applications. TeamViewer example:

https://silentinstallhq.com/teamviewer-install-and-uninstall-powershell/

Start by making a careful list of the required changes and customizations.

Then focus on the necessary cmdlet (or script) if necessary to accomplish each required change and customization - one by one.

Eventually you may be able to combine them all into a script that will automate the process and perhaps prompt you for input as the script runs.

Some, such as wallpaper, may need a function:

https://community.idera.com/databas...wertips/b/tips/posts/change-desktop-wallpaper


Another option - Provisioning Packages:

https://docs.microsoft.com/en-us/wi...isioning-packages/provisioning-create-package

https://docs.microsoft.com/en-us/windows/deployment/windows-10-deployment-scenarios

= = = =

Either way it is going to take considerable effort and planning to get the automation process established.

Start simple and go change by change on your requirements list. Some items will be very straight forward.

Others will be more involved and will likely take more effort to implement/automate.
 
Solution
Couple of threads ago, someone asked about virtually the same - how to replicate a Windows setup (applications, settings, etc) across "similar" computers.