OneDrive - rclone mount - Windows vs Linux

i agree. write a powershell script to check the os. nice and simple.

if ($IsLinux) {
    Write-Host "Linux"
}
elseif ($IsMacOS) {
    Write-Host "macOS"
}
elseif ($IsWindows) {
    Write-Host "Windows"
}

check out my post at

2 Likes