Select script based on your need
⚠️ Script may have potential bug that cause CSV data loss, I'd recommend you to store CSV with OneDrive or backup CSV regularly to keep data more secure
-
My Case Tracker
It will generate CSV with 5 columns:
Date Time Case Type Note 1/1/2023 12:12:00 Incident88888 Written Win10 Upgrade issue Default CSV path is set to keep on Local
-
My Case Tracker Rating
It will generate CSV with 4 columns:
Date Time Case Rating 1/1/2023 12:12:00 Incident88888 10 Default CSV path is set to keep on OneDrive.
Right click->Run with Powershell
Do not change this option after CSV is created, or it may create a new CSV.
Change $KeepLocal
to $true
or $false
under variables block, default value: $false
[Bool]$KeepLocal = $false
By default, the CSV is stored on Documents folder
If OneDrive is installed, it will set with OneDrive-Documents folder
You can also use the 'open CSV folder via file explorer' option to open the folder contains this CSV
Change $Filename
line to under variables block
$Filename = <custom_csv_name>
- Set
$KeepLocal
to $true under variables block
[Bool]$KeepLocal = $true
- Find function Get-ProfilePath, modify the
$profilepath
in main else block
else{
# Modify custom path here with $keeplocal set to $true.
$profilepath = <your_custom_path>
}
This feature not available in My Case Tracker Rating
Modify$target
to under variables block, default value: 35
$target = 35