Difference between revisions of "Winscripting"

From TheBestLinux.com
Jump to navigation Jump to search
(Created page with "First and foremost, you need a good text editor and Microsoft's FREE Visual Studio Code(VS Code). Sure, there are other IDE's with more bells & whistles, VS Code has all you...")
 
Line 2: Line 2:
  
 
The WinGet command line tools saves you a LOT of time and trouble trying to find it online, then download, extract and install it within Windows(VS Code is also available for MAC AND LINUXK!), here is a command you can copy and paste into an administrator command line with ease:
 
The WinGet command line tools saves you a LOT of time and trouble trying to find it online, then download, extract and install it within Windows(VS Code is also available for MAC AND LINUXK!), here is a command you can copy and paste into an administrator command line with ease:
<pre style="color:blue"
+
<pre style="color:blue">
 
winget install -e --id Microsoft.VisualStudioCode --accept-source-agreements
 
winget install -e --id Microsoft.VisualStudioCode --accept-source-agreements
 
</pre>
 
</pre>
 
<br /><br />
 
<br /><br />
Confirm it works by opening up it within Windows, ensuring the GUI pop's up with VS Code ready and waiting for you to start typing some code.
+
Confirm it works by opening up it within Windows, ensuring the GUI pop's up with VS Code ready and waiting for you to start typing some code.<br />
 
This same concept can be applied to a number of MS tools to ease automation of tool installations.
 
This same concept can be applied to a number of MS tools to ease automation of tool installations.
 
<br /><br />
 
<br /><br />

Revision as of 17:21, 23 January 2026

First and foremost, you need a good text editor and Microsoft's FREE Visual Studio Code(VS Code). Sure, there are other IDE's with more bells & whistles, VS Code has all you should need to get good and started!

The WinGet command line tools saves you a LOT of time and trouble trying to find it online, then download, extract and install it within Windows(VS Code is also available for MAC AND LINUXK!), here is a command you can copy and paste into an administrator command line with ease:

winget install -e --id Microsoft.VisualStudioCode --accept-source-agreements



Confirm it works by opening up it within Windows, ensuring the GUI pop's up with VS Code ready and waiting for you to start typing some code.
This same concept can be applied to a number of MS tools to ease automation of tool installations.