コメントありがとうございます。 サービス終了した今なら、安く中古が手に入りそ…
PowerShellでデスクトップに共有フォルダのショートカットを作成してみた
shortcut.ps1
$desktopPath = [Environment]::GetFolderPath('Desktop') $wsShell = New-Object -ComObject WScript.Shell $shortcut = $wsShell.CreateShortcut($desktopPath + "\共有フォルダー.lnk") $shortcut.TargetPath = "\\192.168.82.1\share" $shortcut.IconLocation = "\\192.168.82.1\share" $shortcut.Save()
※日本語を使用した場合はsjisで保存する
検索
コメントを残す