삭제2 윈도우 / WSL 삭제 윈도우 WSL을 삭제하는 스크립트를 작성할 수 있습니다. 아래는 PowerShell을 사용하여 WSL을 제거하는 간단한 스크립트입니다. 이 스크립트를 실행하면 WSL이 제거됩니다. # WSL을 확인하고 삭제하는 PowerShell 스크립트 # 관리자 권한으로 실행되는지 확인 if (-not ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) { Write-Warning "이 스크립트는 관리자 권한으로 실행되어야 합니다. 관리자 권한으로 실행해주세요." exit } # WSL 설.. 2024. 2. 25. Windows / 오래된 파일을 예약 작업으로 삭제하는 방법 오래된 파일을 예약 작업으로 삭제하는 방법 다음과 같은 VBScript를 작성합니다. DelOldFiles.vbs Option Explicit Const strRootPath = "C:\Users\Desktop\TEMP\" Const nDays = 30 Dim oFSO Set oFSO = CreateObject("Scripting.FileSystemObject") Dim oFile Dim oFolder Set oFolder = oFSO.GetFolder(strRootPath) For Each oFile In oFolder.Files rem WScript.Echo("** Source path not found ** [" & oFile.DateLastAccessed & "]" ) If Int(Now() - .. 2020. 4. 26. 이전 1 다음 반응형