About Me

My photo
HANUMANGARH, RAJASTHAN, India
Showing posts with label Winget. Show all posts
Showing posts with label Winget. Show all posts

Friday, 15 December 2023

Auto Install or upgrade the Winget

Run below script and execute "Start-WinGetUpdate"


function Start-WinGetUpdate {

    [CmdletBinding()]

    Param(

        [Parameter(Mandatory = $false, HelpMessage = "Decide if you want to skip the WinGet version check, default it set to false")]

        [switch]$SkipVersionCheck = $false

    )

Extract Disk Info from Remote host

 # Define the remote hostname or IP address $remoteHost = Get-Content "C:\temp\RemoteServer.txt" # Define the output CSV file path...