41 lines
1.1 KiB
PowerShell
41 lines
1.1 KiB
PowerShell
#Initialisation
|
|
|
|
function Start-Init {
|
|
|
|
#Config console output encoding
|
|
[Console]::OutputEncoding = [System.Text.Encoding]::UTF8
|
|
|
|
#Log Header
|
|
$Log = "`n##################################################`n# CHECK FOR APP UPDATES - $(Get-Date -Format (Get-culture).DateTimeFormat.ShortDatePattern)`n##################################################"
|
|
$Log | Write-host
|
|
|
|
#Logs initialisation if admin
|
|
try {
|
|
|
|
$LogPath = "$WorkingDir\logs"
|
|
|
|
if (!(Test-Path $LogPath)) {
|
|
New-Item -ItemType Directory -Force -Path $LogPath
|
|
}
|
|
|
|
#Log file
|
|
$Script:LogFile = "$LogPath\updates.log"
|
|
$Log | out-file -filepath $LogFile -Append
|
|
|
|
}
|
|
#Logs initialisation if non-admin
|
|
catch {
|
|
|
|
$LogPath = "$env:USERPROFILE\Winget-AutoUpdate\logs"
|
|
|
|
if (!(Test-Path $LogPath)) {
|
|
New-Item -ItemType Directory -Force -Path $LogPath
|
|
}
|
|
|
|
#Log file
|
|
$Script:LogFile = "$LogPath\updates.log"
|
|
$Log | out-file -filepath $LogFile -Append
|
|
|
|
}
|
|
|
|
} |