Updated main, module number, and patch notes

This commit is contained in:
Zachary Gorman 2024-07-01 10:43:23 -07:00
parent 40a7ec24cf
commit dbc803b1cc
3 changed files with 5 additions and 2 deletions

View file

@ -12,7 +12,7 @@
RootModule = 'Get-PC.psm1' RootModule = 'Get-PC.psm1'
# Version number of this module. # Version number of this module.
ModuleVersion = '0.3.13' ModuleVersion = '0.3.14'
# Supported PSEditions # Supported PSEditions
# CompatiblePSEditions = @() # CompatiblePSEditions = @()

View file

@ -4,7 +4,7 @@
#region Module Import Block #region Module Import Block
#$ErrorActionPreference = 'SilentlyContinue' $ErrorActionPreference = 'SilentlyContinue'
#DevStage can take either Dev or Prod as values #DevStage can take either Dev or Prod as values
$devStage = 'Dev' $devStage = 'Dev'
#Locations for dev build and prod build #Locations for dev build and prod build
@ -47,6 +47,7 @@ Function Get-PC {
-GPUpdate | runs a gpupdate -GPUpdate | runs a gpupdate
-InstallNet35 | installs .Net 3.5 -InstallNet35 | installs .Net 3.5
-LogOffUser | remotely logs off user -LogOffUser | remotely logs off user
-Monitor | monitors computers for changes in status
-Orion | opens orion to the mac address of the pc -Orion | opens orion to the mac address of the pc
-PCCleanup | removes temp files and inactive user profiles -PCCleanup | removes temp files and inactive user profiles
-PCReboot | reboots computer -PCReboot | reboots computer

View file

@ -1,5 +1,7 @@
Patch: 2024-07-01 Patch: 2024-07-01
-Fix UserProfileBackup restore option now does something (as opposed to nothing) -Fix UserProfileBackup restore option now does something (as opposed to nothing)
-Added Monitor option to Monitor a PCs activity
-Updated Interface listing on get-pc to list all IP enabled devices, use -Resources to see which are "up"
Patch: 2024-06-24 Patch: 2024-06-24
-Add option in UserProfileBackup to specify custom path -Add option in UserProfileBackup to specify custom path