행위

특수

모든 공개 기록

라이언의 꿀팁백과에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.

기록 목록
  • 2024년 1월 26일 (금) 14:28 103.159.161.129 토론님이 PowerShell 일괄 파일 다운로드 스크립트 문서를 만들었습니다 (새 문서: # Define the range of ID numbers $startNumber = 1 $endNumber = 1112 # Loop through the range of ID numbers for ($id = $startNumber; $id -le $endNumber; $id++) { # Format the ID number to have leading zeros $formattedId = $id.ToString("D5") $url = "https://www.example.com?filePath=" + $formattedId $outputName = $formattedId + ".jpg_" # Execute the external command with the formatted ID as a parameter Invoke-WebRequest -Uri $url -OutFile $outputName })