mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-26 23:21:57 -06:00
Restructured Scripts and Workflows into "Assemblies"
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
# Define the file path
|
||||
$filePath = "C:\Canary.txt"
|
||||
|
||||
# Write some content into the file
|
||||
"SYSTEM Canary is alive." | Out-File -FilePath $filePath -Encoding UTF8
|
||||
@@ -0,0 +1,8 @@
|
||||
# Dynamically get the current user's Desktop path
|
||||
$desktopPath = [Environment]::GetFolderPath('Desktop')
|
||||
|
||||
# Define the file path relative to the Desktop
|
||||
$filePath = Join-Path $desktopPath "Canary.txt"
|
||||
|
||||
# Write some content into the file
|
||||
"USER Canary is alive." | Out-File -FilePath $filePath -Encoding UTF8
|
||||
@@ -0,0 +1,8 @@
|
||||
# Dynamically get the current user's Desktop path
|
||||
$desktopPath = "C:\Users\nicole.rappe\Desktop"
|
||||
|
||||
# Define the file path relative to the Desktop
|
||||
$filePath = Join-Path $desktopPath "Canary.txt"
|
||||
|
||||
# Write some content into the file
|
||||
"USER Canary is alive." | Out-File -FilePath $filePath -Encoding UTF8
|
||||
Reference in New Issue
Block a user