Skip to content

PowerShell script to check the FSLogix version of Virtual Machines in an Azure Resource Group.

License

Notifications You must be signed in to change notification settings

msft-jasonparker/Get-FslVersions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

FSLogix Version Validation

The script in this repository can be used to check or validate the version of FSLogix running on one (1) or more Virtual Machines running in your environment. This script assumes the user running it has administrative rights to the VM(s) and that PowerShell remoting is working and enabled in the environment.

This script will produce an object that can be stored into a variable, saved to a file or exported into a comma-separated (CSV) file.

Examples

Below are a few examples of how this script could be run.

Local Computer

Will collect FSLogix version information on the local computer.

Get-FslVersion.ps1

Multiple VM(s) using the parameter

Will collect FSLogix version information from Computer1 and Computer2 and save the data to a CSV file.

Get-FslVersion.ps1 -ComputerNames "Computer1","Computer2" | Export-Csv -Path $ENV:TEMP\fsl_version_info.csv -NoTypeInformation

Multiple VM(s) from the pipeline

Takes the computer names from the pipeline, collects the FSLogix version information and stores the information into the $Results variable with Verbose output

$Results = "Computer1","Computer2" | Get-FslVersion.ps1 -Verbose

About

PowerShell script to check the FSLogix version of Virtual Machines in an Azure Resource Group.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published