+ 간결하며 winget 설치·업데이트 명령이 명확하다.
- 다운로드 폴더 지정이 불가능하다는 설명이 부정확하다.
소프트웨어 이름을 넣으면, winget, Chocolatey, GitHub dra 등을 순서대로 확인해 Windows 10/11용 무인 설치 PowerShell 명령을 작성합니다.
| 분류 | 개발 › 배포·운영 |
|---|---|
| 태그 | 초안작성검토개발자코드 |
Ask me for the name of the software as your next question. - You are an IT expert technican. I want you to research, verify and then write powershell commands to silently install or update the software on a Windows 10/11 x86_64 computer. Workflow: - If the software is officially available on winget. use winget to install it. - Elseif the software is available on chocolatey, use chocolatey to install it. - Elseif the software is from github. I prefer using dra (https://github.com/devmatteini/dra) to download and install the software. - Elseif the software is not silently installable, download the software to user's default download folder first and then guide user how to install it and print a url link to the official installation guide. - Assume winget, chocolatey and dra were already available and on user's computer. - Always download the software to user's default Download folder. (check registry to find the correct path). - output the commands in a code box.
관리자가 설치·업데이트 명령을 빠르게 만들 때 쓰인다. 공식 배포 여부를 확인하고 다운로드 폴더를 찾도록 하지만, 실제 실행 전 검증이 필요하다.
ChatGPT는 간결하지만 다운로드 경로 설명이 틀렸고, Gemini는 더 구체적이나 장황하며 조회한 경로를 사용하지 않는다. [C]는 제출되지 않았다.
+ 간결하며 winget 설치·업데이트 명령이 명확하다.
- 다운로드 폴더 지정이 불가능하다는 설명이 부정확하다.
+ 설치 여부를 판별하는 실무형 스크립트가 구체적이다.
- 다운로드 경로를 조회만 하며 불필요한 폴백도 수행한다.
| 기준 | ChatGPT | Gemini | 앞선 모델 |
|---|---|---|---|
| 지시 준수 | 6 | 6 | 동점 |
| 정확성 | 6 | 6 | 동점 |
| 구체성 | 8 | 9 | Gemini +13% |
| 구성·가독성 | 9 | 8 | ChatGPT +13% |
| 분량 적정성 | 9 | 6 | ChatGPT +50% |
gpt-5.6-sol가 모델 이름을 가린 채 1~10점으로 채점했습니다 (2026-09-24). 측정값이 아니라 AI 심사 결과입니다.
같은 입력을 세 모델에 넣어 받은 답을 그대로 옮겼습니다. 각 CLI(에이전트 하네스)에서 실행했습니다. ChatGPT·Claude 앱이나 웹에서는 답이 다를 수 있습니다.
[붙여 넣은 자료] 설치할 소프트웨어는 'Notion'이야. 신입사원 노트북 세팅용 무인 설치 스크립트에 넣을 거라 사용자 개입 없이 조용히 설치되는 방법이 필요해.
확인 결과 Notion은 공식 winget 패키지 Notion.Notion으로 제공되며, winget의 --silent 옵션으로 사용자 개입 없이 설치·업데이트할 수 있습니다.
단, winget이 관리하는 설치 파일은 자체 캐시에 다운로드되므로 다운로드 폴더를 강제로 지정할 수는 없습니다. 다운로드 폴더 경로 확인 명령은 포함했습니다.
# Windows 10/11 x86_64 확인
if (-not [Environment]::Is64BitOperatingSystem) {
throw "64비트 Windows에서만 실행할 수 있습니다."
}
# 사용자의 기본 다운로드 폴더 확인
$downloads = (Get-ItemProperty `
"HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders"
)."{374DE290-123F-4565-9164-39C4925E467B}"
$downloads = [Environment]::ExpandEnvironmentVariables($downloads)
# Notion 설치 또는 업데이트
winget install `
--id Notion.Notion `
--exact `
--source winget `
--silent `
--accept-package-agreements `
--accept-source-agreements
이미 설치된 Notion을 확실히 업데이트하려면 다음 명령을 사용합니다.
winget upgrade `
--id Notion.Notion `
--exact `
--source winget `
--silent `
--accept-package-agreements `
--accept-source-agreements
공식 설치 안내: Notion 다운로드 페이지
| 프로덕션 AI 에이전트 설계 프롬프트 | |
| AI 에이전트 보안 점검 프롬프트 | |
| AI 제공자 요금 조사 프롬프트 | |
| 상자 탈출 AI 역할을 맡기는 프롬프트 | |
| 보안 경고 분석 프롬프트 |