Dictionaries/Dict.Windows/Dict.Windows.psm1
<#
###### ####### ## ## ######## ## ## ######## ######## ######## ## ## ## ## ### ### ## ## ## ## ## ## ## ## ## ## ## #### #### ## ## ## ## ## ## ## ## ## ## ## ## ### ## ######## ## ## ## ###### ######## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ###### ####### ## ## ## ####### ## ######## ## ## #> <# .SYNOPSIS Know if computer was booted using old legacy BIOS mode or new UEFI. .DESCRIPTION To make next boot efficient, we need to know in what mode the computer booted to this stage. This function will tell us that. If every tests fail, or if we can't determined the boot mode, it default to "BIOS" mode. .EXAMPLE $bootMode = Get-ComputerBootMode .NOTES General notes #> function Get-ComputerBootMode { [CmdletBinding()] [OutputType([String])] Param ( # [Parameter(Mandatory = $true, ValueFromPipeLine = $true)][string]$string ) Begin { Write-EnterFunction } Process { switch ($env:firmware_type) { 'Legacy' { return "BIOS" } 'UEFI' { return "UEFI" } } if ($null = Test-RegValueExist -RegPath 'HKLM:\System\CurrentControlSet\Control' -Name PEFirmwareType) { $value = Get-ItemPropertyValue 'HKLM:\System\CurrentControlSet\Control' -Name PEFirmwareType switch ($value) { 1 { return "BIOS" } 2 { return "UEFI" } default { return "BIOS" } } } return "BIOS" } End { Write-LeaveFunction } } <# .SYNOPSIS Configure computer to boot on user-asked partition .DESCRIPTION This function configure the boot flag on the correct partition .PARAMETER Force Force things .PARAMETER Label Label of the partition to configure .PARAMETER Volume Mountpoint of the target partition .PARAMETER Disk Disk device name of the partition .PARAMETER PartNum Partition number (can be several strings char since nvme disks. e.g. 'p1') .PARAMETER Device Full device adress like in '/dev/sda1' .NOTES General notes #> function Set-ComputerNextBootBIOS { [CmdletBinding()] [OutputType([Boolean])] Param ( [switch]$Force, [Parameter(Mandatory = $true, ParameterSetName = 'LABEL')][string]$Label, [Alias('MountPoint', 'Letter', 'DriveLetter')] [Parameter(Mandatory = $true, ParameterSetName = 'VOLUME')][string]$Volume, [AllowNull] [Parameter(Mandatory = $false, ParameterSetName = 'DISKPART')][string]$Disk, [Parameter(Mandatory = $true, ParameterSetName = 'DISKPART')][string]$PartNum, [Parameter(Mandatory = $true, ParameterSetName = 'DEVICE')][string]$Device ) Begin { Write-EnterFunction } Process { $diskNumber = -1 $partNumber = -1 switch ($PSCmdlet.ParameterSetName) { 'LABEL' { $volume = Get-Volume -FileSystemLabel $Label $part = Get-Partition -Volume $volume $diskNumber = $part.DiskNumber $partNumber = $part.PartitionNumber } 'VOLUME' { # we use $Volume[0] to get only the (1st) letter, stripping out the ':' $part = Get-Partition -DriveLetter $Volume[0] $diskNumber = $part.DiskNumber $partNumber = $part.PartitionNumber } 'DISKPART' { $diskNumber = $Disk $partNumber = $PartNum } 'Device' { eerror "-Device not supported on Windows." } } if ($diskNumber -lt 0) { eerror "Disk not found." return $false } if ($partNumber -lt 1) { eerror "Partition not found." return $false } $script = @" select disk ${diskNumber} select part ${partNumber} active "@ $script | Out-File -FilePath "$TMP\nextboot.diskpart" Get-Content -Raw "$TMP\nextboot.diskpart" | ForEach-Object { edevel "$_" } $rc = Execute-Command -exe diskpart -args "/s $TMP\nextboot.diskpart" return $rc } End { Write-LeaveFunction } } <# ######## ### ###### ## ## ###### ###### ## ## ######## ######## ## ## ## ######## ######## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ###### ##### ###### ## ######### ###### ## ## ## ## ## ###### ######## ## ######### ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ###### ## ## ###### ###### ## ## ######## ######## ####### ######## ######## ## ## #> <# .SYNOPSIS Create a new folder in the Operating System's task scheduler .DESCRIPTION Create a new folder in the Operating System's task scheduler daemon. .PARAMETER FolderName The name of the folder to create .PARAMETER Root An optional root folder to be the parent of the folder to create .EXAMPLE New-PwShFwScheduledTaskFolder -FolderName "MyDaemon" .NOTES On linux, this function just create an empty file under /etc/cron.d by default #> function New-PwShFwScheduledTaskFolder { [CmdletBinding()] [OutputType([Boolean])] [Alias('New-CronTaskFile')] Param ( [Alias('Name')] [Parameter(Mandatory = $true, ValueFromPipeLine = $true)][string]$FolderName, [string]$Root = '\' ) Begin { Write-EnterFunction } Process { $ErrorActionPreference = "stop" $scheduleObject = New-Object -ComObject schedule.service $scheduleObject.connect() $rootFolder = $scheduleObject.GetFolder($Root) Try { $null = $scheduleObject.GetFolder($FolderName) } Catch { $null = $rootFolder.CreateFolder($FolderName) } Finally { $ErrorActionPreference = "continue" } # test to return correct value Try { $null = $scheduleObject.GetFolder($FolderName) return $true } Catch { return $false } } End { Write-LeaveFunction } } <# .SYNOPSIS Create a new scheduled task / cron job .DESCRIPTION New-PwShFwScheduledTask function is a cross-platform wrapper for Scheduled Task / cron jobs. It creates a full scheduled task / cron job within one command whatever the underlying OS is. .PARAMETER Folder Optional Folder name into which to create the task .PARAMETER Name Name of the task .PARAMETER Command Command or script to run .PARAMETER Parameters Arguments to pass to the command .PARAMETER Description Optional description of the task .PARAMETER Username Username to use to launch the task .PARAMETER Minutes Set the minutes number to trigger job (can be '*' to run every minutes). Default = '*' .PARAMETER Hour Set the hour number to trigger job (can be '*' to run every hours). Default = '*' .PARAMETER DayOfMonth Set the day of the month number to trigger job (can be '*' to run every days). Default = '*' .PARAMETER DayOWeek Set the day of week number to trigger job (can be '*' to run every days of week). Default = '*' .PARAMETER Month Set the month number to trigger job (can be '*' to run every months). Default = '*' .PARAMETER Year Set the year number to trigger job (can be '*' to run every years). Default = '*' .PARAMETER EveryMinutes Equals to -Minute '*' .PARAMETER Hourly Equals to -Minute 0 -Hours '*' .PARAMETER Daily Equals to -Minute 0 -Hours 0 -DayOfMonth '*' .PARAMETER Weekly Equals to -Minute 0 -Hours 0 -DayOfWeek 1 -Week '*' .PARAMETER Monthly Equals to -Minute 0 -Hours 0 -DayOfMonth 1 -Month '*' .PARAMETER Yearly Equals to -Minute 0 -Hours 0 -DayOfMonth 1 -Month 1 -Year '*' .PARAMETER AtStartup Trigger job on system startup .PARAMETER AtLogon Trigger job on session logon .EXAMPLE An example .NOTES General notes #> function New-PwShFwScheduledTask { [CmdletBinding(DefaultParameterSetName = 'EXACT_TRIGGER')] [OutputType([String])] Param ( [string]$Folder = "\", [Parameter(Mandatory = $true, ValueFromPipeLine = $true)][string]$Name, [Parameter(Mandatory = $true, ValueFromPipeLine = $true)][string]$Command, [Parameter(Mandatory = $false, ValueFromPipeLine = $true)][string]$Parameters, [string]$Description = "", [string]$Username = $env:USERNAME, [Parameter(ParameterSetName = 'EXACT_TRIGGER')][string]$Minute = '*', [Parameter(ParameterSetName = 'EXACT_TRIGGER')][string]$Hour = '*', [Parameter(ParameterSetName = 'EXACT_TRIGGER')][string]$DayOfMonth = '*', [Parameter(ParameterSetName = 'EXACT_TRIGGER')][string]$DayOfWeek = '*', # [Parameter(ParameterSetName = 'EXACT_TRIGGER')][string]$Week = '*', [Parameter(ParameterSetName = 'EXACT_TRIGGER')][string]$Month = '*', [Parameter(ParameterSetName = 'EXACT_TRIGGER')][string]$Year = '*', [Parameter(ParameterSetName = 'ALIAS_TRIGGER')][switch]$EveryMinutes, [Parameter(ParameterSetName = 'ALIAS_TRIGGER')][switch]$Hourly, [Parameter(ParameterSetName = 'ALIAS_TRIGGER')][switch]$Daily, [Parameter(ParameterSetName = 'ALIAS_TRIGGER')][switch]$Weekly, [Parameter(ParameterSetName = 'ALIAS_TRIGGER')][switch]$Monthly, [Parameter(ParameterSetName = 'ALIAS_TRIGGER')][switch]$Yearly, [Parameter(ParameterSetName = 'ALIAS_TRIGGER')][switch]$AtStartup, [Parameter(ParameterSetName = 'ALIAS_TRIGGER')][switch]$AtLogon ) Begin { Write-EnterFunction } Process { if ([string]::IsNullOrEmpty($Description)) { $Description = "$Name - $Command $Parameters" } $action = New-ScheduledTaskAction -Execute $Command -Argument $Parameters switch ($PSCmdlet.ParameterSetName) { 'EXACT_TRIGGER' { } 'ALIAS_TRIGGER' { if ($EveryMinutes) { $trigger = New-ScheduledTaskTrigger -Once -At 0am -RepetitionInterval (New-TimeSpan -Seconds 60) -RepetitionDuration ([System.TimeSpan]::MaxValue) } if ($Hourly) { $trigger = New-ScheduledTaskTrigger -Once -At 0am -RepetitionInterval (New-TimeSpan -Minutes 60) -RepetitionDuration ([System.TimeSpan]::MaxValue) } if ($Daily) { $trigger = New-ScheduledTaskTrigger -Daily -At 0am } if ($Weekly) { $trigger = New-ScheduledTaskTrigger -Weekly -DaysOfWeek $DayOfWeek -At 0am } if ($Monthly) { $trigger = New-ScheduledTaskTrigger -Daily -DaysInterval 30 -At 0am } if ($Yearly) { $trigger = New-ScheduledTaskTrigger -Daily -DaysInterval 365 -At 0am } if ($AtStartup) { $trigger = New-ScheduledTaskTrigger -AtStartup } if ($AtLogon) { $trigger = New-ScheduledTaskTrigger -AtLogon } } } try { $task = Register-ScheduledTask -TaskPath $Folder -TaskName $Name -User $Username -Description $Description -Action $action -Trigger $trigger $rc = $? } catch { eerror $_ $rc = $false } return $rc } End { Write-LeaveFunction } } |