{"content":"<div></div>","rawMetadata":{"metadata":{"_op_canonicalUrlPrefix":"https://learn.microsoft.com/ko-kr/powershell/","_op_gitContributorInformation":{"author":{"display_name":"Banreet Kaur","id":"92906285","name":"Banreet","profile_url":"https://github.com/Banreet"},"contributors":[{"display_name":"Aaron Czechowski","id":"26784733","name":"aczechowski","profile_url":"https://github.com/aczechowski"},{"display_name":"PRMerger7","id":"28388158","name":"PRMerger7","profile_url":"https://github.com/PRMerger7"},{"display_name":"gwblok","id":"26312309","name":"gwblok","profile_url":"https://github.com/gwblok"},{"display_name":"Dan Mabee","id":"40476441","name":"damabe","profile_url":"https://github.com/damabe"},{"display_name":"Jonathan Gao","id":"2213767","name":"mumian","profile_url":"https://github.com/mumian"},{"display_name":"sankethka","id":"16908144","name":"sankethka","profile_url":"https://github.com/sankethka"}],"update_at":"2026. 9. 1.","updated_at_date_time":"2026-09-01T12:17:45.7993549Z"},"_path":"module/configurationmanager/new-cmtasksequencedeployment.json","_rel":"../../","_tocRel":"../sccm-ps/toc.json","apiPlatform":"powershell","author":"Banreet","breadcrumb_path":"/powershell/sccm/bread/toc.json","canonical_url":"https://learn.microsoft.com/ko-kr/powershell/module/configurationmanager/new-cmtasksequencedeployment?view=sccm-ps","content_git_url":"https://github.com/MicrosoftDocs/sccm-docs-powershell-ref/blob/main/sccm-ps/ConfigurationManager/New-CMTaskSequenceDeployment.md","default_moniker":"sccm-ps","depot_name":"MSDN.sccm-powershell","description":"작업 순서 배포 만들기","external help file":"AdminUI.PS.dll-Help.xml","feedback_product_url":"https://feedbackportal.microsoft.com/feedback/forum/4669adfc-ee1b-ec11-b6e7-0022481f8472","feedback_system":"Standard","git_commit_id":"48cf632fb4b9ad92060012681a500478254de750","gitcommit":"https://github.com/MicrosoftDocs/sccm-docs-powershell/blob/48cf632fb4b9ad92060012681a500478254de750/sccm-ps/ConfigurationManager/New-CMTaskSequenceDeployment.md","github_contributors":["aczechowski","PRMerger7","gwblok","damabe","mumian","sankethka"],"locale":"ko-kr","manager":"laurawi","Module Name":"ConfigurationManager","monikers":["sccm-ps"],"ms.author":"dannygu","ms.date":"08/25/2020","ms.service":"configuration-manager","ms.subservice":"other","ms.topic":"reference","open_to_public_contributors":true,"original_content_git_url":"https://github.com/MicrosoftDocs/sccm-docs-powershell/blob/live/sccm-ps/ConfigurationManager/New-CMTaskSequenceDeployment.md","original_content_git_url_template":"{repo}/blob/{branch}/sccm-ps/ConfigurationManager/New-CMTaskSequenceDeployment.md","PlatyPS schema version":"2.0.0","products":["https://authoring-docs-microsoft.poolparty.biz/devrel/f1499c3b-793f-48c3-a9ce-20285bcc6541"],"site_name":"Docs","title":"New-CMTaskSequenceDeployment","titleSuffix":"Configuration Manager","uhfHeaderId":"MSDocsHeader-Powershell","updated_at":"2026-09-01 12:17 PM","xrefs":[{"href":"https://learn.microsoft.com/powershell/module/configurationmanager/new-cmtasksequencedeployment","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"New-CMTaskSequenceDeployment","schemaType":"PowershellCmdlet","summary":"<p>작업 순서 배포를 만듭니다.</p>\n","uid":"ConfigurationManager.New-CMTaskSequenceDeployment"}],"ocv-translation-feedback":true},"_xrefmap":{"ConfigurationManager":{"href":"./","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"ConfigurationManager","schemaType":"PowershellModule","uid":"ConfigurationManager"},"ConfigurationManager.New-CMTaskSequenceDeployment":{"href":"new-cmtasksequencedeployment","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"New-CMTaskSequenceDeployment","schemaType":"PowershellCmdlet","summary":"<p>작업 순서 배포를 만듭니다.</p>\n","uid":"ConfigurationManager.New-CMTaskSequenceDeployment"}},"description":"<p>\n              <strong>New-CMTaskSequenceDeployment</strong> cmdlet은 작업 순서 배포를 만듭니다. 작업 순서 배포는 컴퓨터 컬렉션에 작업 순서를 할당합니다.</p>\n<div class=\"NOTE\">\n<p>참고</p>\n<p>Configuration Manager 사이트 드라이브에서 Configuration Manager cmdlet을 실행합니다(예: <code>PS XYZ:\\&gt;</code>). 자세한 내용은 <a href=\"/powershell/sccm/overview\">시작을 참조하세요</a>.</p>\n</div>\n","examples":[{"code":"$DeployTS = Get-CMTaskSequence -TaskSequencePackageId 'PS104823'\n$DeployCollection = 'PS11B7C4'\n$DeployAvailableTime = [datetime]::ParseExact(\"20251125-200000\", \"yyyyMMdd-HHmmss\", $null)\n$DeployExpireTime = [datetime]::ParseExact(\"20260125-200000\", \"yyyyMMdd-HHmmss\", $null)\n$ScheduleDateTime = [datetime]::ParseExact(\"20251225-200000\", \"yyyyMMdd-HHmmss\", $null)\n$DeploySchedule = New-CMSchedule -DurationInterval Days -RecurInterval Days -RecurCount 1 -DurationCount 0 -Start $ScheduleDateTime\nNew-CMTaskSequenceDeployment -InputObject $DeployTS -DeployPurpose Required -AvailableDateTime $DeployAvailableTime -Availability Clients -RerunBehavior AlwaysRerunProgram -Schedule $DeploySchedule -CollectionId $DeployCollection -ShowTaskSequenceProgress $true -DeploymentOption DownloadAllContentLocallyBeforeStartingTaskSequence -RunFromSoftwareCenter $true -DeadlineDateTime $DeployExpireTime","description":"","summary":"<p>이 예제에서는 다음 작업을 수행합니다.</p>\n<ul>\n<li>\n              <strong>Get-CMTaskSequence</strong> cmdlet을 사용하여 배포할 작업 순서 개체를 가져와<strong>서 $DeployTS</strong> 변수에 저장합니다.</li>\n<li>변수 <strong>$DeployCollection</strong> 배포의 대상으로 컬렉션을 정의합니다.</li>\n<li>\n              <strong>변수 $DeployAvailableTime</strong> 2025년 11월 25일 오후 8:00에 배포 사용 가능한 시간을 정의합니다.</li>\n<li>변수 <strong>$DeployExpireTime</strong> 2026년 1월 25일 오후 8:00에 배포 만료 시간을 정의합니다.</li>\n<li>변수 <strong>$ScheduleDateTime</strong> 2025년 12월 25일 오후 8:00에 배포 마감일을 정의합니다.</li>\n<li>\n              <strong>New-CMSchedule</strong> cmdlet을 사용하여 매일 되풀이 일정으로 최종 기한에 대한 일정 개체를 만듭니다.</li>\n<li>작업 순서 배포</li>\n</ul>\n","title":"예제 1: 많은 일반적인 매개 변수를 사용하여 작업 순서 배포"}],"inputs":[{"description":"","name":"<span class=\"no-loc xref\">Microsoft.ConfigurationManagement.ManagementProvider.IResultObject</span>\n"}],"links":[{"href":"get-cmtasksequencedeployment","text":"Get-CMTaskSequenceDeployment"},{"href":"set-cmtasksequencedeployment","text":"Set-CMTaskSequenceDeployment"},{"href":"remove-cmtasksequencedeployment","text":"Remove-CMTaskSequenceDeployment"},{"href":"get-cmtasksequence","text":"Get-CMTaskSequence"},{"href":"/mem/configmgr/osd/deploy-use/deploy-a-task-sequence","text":"작업 순서 배포"}],"module":"ConfigurationManager","name":"New-CMTaskSequenceDeployment","notes":"<p>일정 매개 변수를 적절하게 사용해야 합니다.</p>\n<ul>\n<li><p>\n              <strong>-AvailableDateTime</strong>: 이 배포를 <em>사용할 수 있는</em> 시기를 지정합니다.</p>\n</li>\n<li><p>\n              <strong>-DeadlineDateTime</strong>: 배포가 <em>만료되는</em> 시기를 지정합니다.</p>\n</li>\n<li><p>\n              <strong>-일정</strong>: 배포 할당 또는 마감일을 지정 <em>합니다</em>.</p>\n</li>\n</ul>\n","outputs":[{"description":"","name":"<span class=\"no-loc xref\">IResultObject</span>\n"}],"parameters":[{"aliases":"","defaultValue":"None","description":"<p>배포 경고를 사용하도록 설정하는 경우 이 매개 변수를 사용하여 경고 시간을 지정합니다.</p>\n","name":"AlertDateTime","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">DateTime</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>클라이언트가 기본 사이트 경계 그룹의 배포 지점을 사용할 수 있도록 허용합니다.</p>\n","name":"AllowFallback","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"AllowUseRemoteDistributionPoint","defaultValue":"None","description":"<p>클라이언트가 인접 경계 그룹의 배포 지점을 사용할 수 있도록 허용합니다.</p>\n","name":"AllowSharedContent","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"MakeAvailableTo","defaultValue":"None","description":"<p>Configuration Manager 클라이언트에서 이 작업 순서를 사용할 수 있도록 할지 여부와 부팅 미디어, 사전 준비된 미디어 또는 PXE를 사용하여 OS를 배포할 때 실행할 수 있는지 여부를 지정합니다.</p>\n","name":"Availability","parameterValueGroup":"Clients, ClientsMediaAndPxe, MediaAndPxe, MediaAndPxeHidden","position":"Named","type":"<span class=\"no-loc xref\">MakeAvailableToType</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>이 배포를 <em>사용할 수 있는</em> 시기를 지정합니다.</p>\n<p>\n              <strong>-DeadlineDateTime</strong>을 사용하여 배포<em>가 만료</em>되는 시기를 지정하고 <strong>-Schedule</strong>을 사용하여 배포 할당 또는 <em>최종 기한</em>을 지정합니다.</p>\n","name":"AvailableDateTime","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">DateTime</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>컬렉션 개체를 이 작업 순서 배포의 대상으로 지정합니다. 이 개체를 얻으려면 <a href=\"get-cmcollection\">Get-CMCollection</a> cmdlet을 사용합니다.</p>\n","name":"Collection","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">IResultObject</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>컬렉션 ID를 이 작업 순서 배포의 대상으로 지정합니다.</p>\n","name":"CollectionId","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"acceptWildcardCharacters":true,"aliases":"","defaultValue":"None","description":"<p>컬렉션 이름을 이 작업 순서 배포의 대상으로 지정합니다.</p>\n","name":"CollectionName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>작업 순서 배포에 대한 선택적 주석을 지정합니다.</p>\n","name":"Comment","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"cf","defaultValue":"None","description":"<p>cmdlet을 실행하기 전에 확인 메시지를 표시합니다.</p>\n","name":"Confirm","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"DeploymentExpireDateTime","defaultValue":"None","description":"<p>배포가 만료되는 시기를 지정하려면 이 매개 변수 <em>를</em> 사용합니다.</p>\n<p>\n              <strong>-AvailableDateTime</strong>을 사용하여 배포를 <em>사용할 수 있는</em> 시기를 지정하고 <strong>-Schedule</strong>을 사용하여 배포 할당 또는 <em>최종 기한</em>을 지정합니다.</p>\n","name":"DeadlineDateTime","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">DateTime</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>클라이언트가 배포 지점과 상호 작용하여 작업 순서에 대한 콘텐츠를 가져오는 방법을 지정합니다. 특정 시나리오에서 모든 옵션을 사용할 수 있는 것은 아닙니다. 자세한 내용은 <a href=\"/mem/configmgr/osd/deploy-use/deploy-a-task-sequence#bkmk_deploy-options\">작업 순서 배포 - 배포 옵션을 참조하세요</a>.</p>\n","name":"DeploymentOption","parameterValueGroup":"DownloadContentLocallyWhenNeededByRunningTaskSequence, DownloadAllContentLocallyBeforeStartingTaskSequence, RunFromDistributionPoint","position":"Named","type":"<span class=\"no-loc xref\">DeploymentOptionType</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>사용자가 이 배포를 설치할 수 있는지, 아니면 최종 기한에 설치해야 하는지를 지정합니다.</p>\n","name":"DeployPurpose","parameterValueGroup":"Available, Required","position":"Named","type":"<span class=\"no-loc xref\">DeployPurposeType</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>이 매개 변수는 와일드카드 문자를 리터럴 문자 값으로 처리합니다. \n              <strong>ForceWildcardHandling</strong>과 결합할 수 없습니다.</p>\n","name":"DisableWildcardHandling","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>사이트는 이 컬렉션 이름과 연결된 배포 지점 그룹에 콘텐츠를 배포합니다.</p>\n","name":"DistributeCollectionName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>이 배포를 만들 때 작업 순서 콘텐츠를 배포하려면 이 매개 변수를 추가합니다. 클라이언트가 액세스할 수 있는 배포 지점에 콘텐츠를 배포할 때까지 클라이언트는 작업 순서를 설치할 수 없습니다.</p>\n","name":"DistributeContent","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>사이트는 이 배포 지점 그룹에 콘텐츠를 배포합니다.</p>\n","name":"DistributionPointGroupName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>사이트는 이 배포 지점에 콘텐츠를 배포합니다.</p>\n","name":"DistributionPointName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>이 매개 변수는 와일드카드 문자를 처리하고 예기치 않은 동작(권장되지 않음)으로 이어질 수 있습니다. \n              <strong>DisableWildcardHandling</strong>과 결합할 수 없습니다.</p>\n","name":"ForceWildcardHandling","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"TaskSequence","defaultValue":"None","description":"<p>배포할 작업 순서 개체를 지정합니다. 작업 순서 개체를 얻으려면 <a href=\"get-cmtasksequence\">Get-CMTaskSequence</a> cmdlet을 사용합니다.</p>\n","isRequired":true,"name":"InputObject","parameterValueGroup":"","pipelineInput":true,"position":"0","type":"<span class=\"no-loc xref\">IResultObject</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>인터넷의 클라이언트에 대해 작업 순서를 실행하도록 허용합니다.</p>\n","name":"InternetOption","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>실패한 배포에 대한 경고를 만들면 실패한 배포의 비율이 이 수보다 높을 때 사이트에서 경고를 생성합니다.</p>\n","name":"PercentFailure","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Int32</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>성공적인 배포에 대한 경고를 만들면 성공적인 배포 비율이 이 수보다 낮으면 사이트에서 경고를 생성합니다.</p>\n","name":"PercentSuccess","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Int32</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>클라이언트가 Windows Embedded 디바이스에서 쓰기 필터를 처리하는 방법을 구성합니다.</p>\n<ul>\n<li>\n              <code>$true</code>: 최종 기한 또는 유지 관리 기간 동안 변경 내용을 커밋합니다. 다시 시작해야 합니다.</li>\n<li>\n              <code>$false</code>: 오버레이에 콘텐츠를 적용하고 나중에 커밋합니다.</li>\n</ul>\n","name":"PersistOnWriteFilterDevice","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>이전에 예약된 필수 시간 이전에 실행한 경우 컴퓨터에서 작업 순서를 다시 실행할지 여부를 지정합니다. 기본적으로 작업 순서는 항상 다시 실행됩니다.</p>\n","name":"RerunBehavior","parameterValueGroup":"NeverRerunDeployedProgram, AlwaysRerunProgram, RerunIfFailedPreviousAttempt, RerunIfSucceededOnPreviousAttempt","position":"Named","type":"<span class=\"no-loc xref\">RerunBehaviorType</span>\n"},{"aliases":"AllowUsersRunIndependently","defaultValue":"None","description":"<p>사용자가 할당과 독립적으로 프로그램을 실행할 수 있도록 허용합니다.</p>\n","name":"RunFromSoftwareCenter","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>이 매개 변수를 사용하여 배포 할당 또는 <em>최종 기한</em>을 지정합니다.</p>\n<p>\n              <strong>-AvailableDateTime</strong>을 사용하여 배포를 <em>사용할 수 있는</em> 시기를 지정하고 <strong>-DeadlineDateTime</strong>을 사용하여 배포<em>가 만료되는</em> 시기를 지정합니다.</p>\n<p>일정 개체의 배열을 지정합니다. schedule 개체는 배포에 대한 필수 할당 일정을 정의합니다. 일정 개체를 만들려면 <a href=\"new-cmschedule\">New-CMSchedule</a> cmdlet을 사용합니다.</p>\n","name":"Schedule","parameterValueGroup":"","position":"Named","type":"<p><span class=\"no-loc xref\">IResultObject</span><span>[</span><span>]</span></p>\n"},{"aliases":"","defaultValue":"None","description":"<p>작업 순서 배포가 실행되는 시기를 결정하는 이벤트 배열을 지정합니다.</p>\n","name":"ScheduleEvent","parameterValueGroup":"AsSoonAsPossible, LogOn, LogOff","position":"Named","type":"<p><span class=\"no-loc xref\">ScheduleEventType</span><span>[</span><span>]</span></p>\n"},{"aliases":"","defaultValue":"None","description":"<p>배포가 시작되기 전에 컴퓨터에 절전 모드 해제 패킷을 보낼지 여부를 나타냅니다. 이 값이 이 <code>$True</code>면 Configuration Manager가 컴퓨터를 절전 모드에서 해제합니다. 이 값이 이 <code>$False</code>면 컴퓨터를 절전 모드에서 해제하지 않습니다. 컴퓨터가 절 해제하려면 먼저 Wake On LAN을 구성합니다.</p>\n","name":"SendWakeupPacket","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>작업 순서에 대한 프로세스 대화 상자를 표시할지 여부를 나타냅니다.</p>\n","name":"ShowTaskSequenceProgress","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>설치 최종 기한에 도달하면 작업 순서가 유지 관리 기간 외부에 설치되도록 이 매개 변수 <code>$true</code> 를 로 설정합니다.</p>\n","name":"SoftwareInstallation","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>설치 기한에 도달하면 유지 관리 기간 외부에서 필요한 경우 시스템을 다시 시작할 수 있도록 이 매개 변수 <code>$true</code> 를 로 설정합니다.</p>\n","name":"SystemRestart","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"PackageId, TaskSequenceId","defaultValue":"None","description":"<p>배포할 작업 순서의 ID를 지정합니다.</p>\n","isRequired":true,"name":"TaskSequencePackageId","parameterValueGroup":"","position":"0","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>설치 기한 이후에 요금제 인터넷 연결의 클라이언트가 콘텐츠를 다운로드할 수 있도록 허용할지 여부를 나타내며, 이로 인해 추가 비용이 발생할 수 있습니다.</p>\n","name":"UseMeteredNetwork","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>클라이언트 컴퓨터가 UTC 시간을 사용하여 프로그램의 가용성을 결정하는지 여부를 나타냅니다. UTC 시간을 사용하면 모든 컴퓨터에서 작업 순서를 동시에 사용할 수 있습니다.</p>\n","name":"UseUtcForAvailableSchedule","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>클라이언트 컴퓨터가 UTC 시간을 사용하여 프로그램의 만료를 결정하는지 여부를 나타냅니다. UTC 시간을 사용하면 모든 컴퓨터에서 작업 순서를 동시에 사용할 수 있습니다.</p>\n","name":"UseUtcForExpireSchedule","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"wi","defaultValue":"None","description":"<p>cmdlet이 실행되면 어떻게 되는지 보여줍니다. cmdlet이 실행되지 않습니다.</p>\n","name":"WhatIf","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"}],"schema":"PowershellCmdlet","summary":"<p>작업 순서 배포를 만듭니다.</p>\n","syntaxes":["New-CMTaskSequenceDeployment [-AlertDateTime <DateTime>] [-AllowFallback <Boolean>]\n [-AllowSharedContent <Boolean>] [-Availability <MakeAvailableToType>] [-DeadlineDateTime <DateTime>]\n [-DeploymentOption <DeploymentOptionType>] [-DeployPurpose <DeployPurposeType>] [-InputObject] <IResultObject>\n [-InternetOption <Boolean>] [-PercentFailure <Int32>] [-PercentSuccess <Int32>]\n [-RerunBehavior <RerunBehaviorType>] [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>]\n [-ScheduleEvent <ScheduleEventType[]>] [-ShowTaskSequenceProgress <Boolean>] [-SoftwareInstallation <Boolean>]\n [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>] [-UseUtcForExpireSchedule <Boolean>]\n [-DistributeCollectionName <String>] [-DistributeContent] [-DistributionPointGroupName <String>]\n [-DistributionPointName <String>] [-AvailableDateTime <DateTime>] [-Comment <String>]\n [-PersistOnWriteFilterDevice <Boolean>] [-SendWakeupPacket <Boolean>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","New-CMTaskSequenceDeployment [-AlertDateTime <DateTime>] [-AllowFallback <Boolean>]\n [-AllowSharedContent <Boolean>] [-Availability <MakeAvailableToType>] [-DeadlineDateTime <DateTime>]\n [-DeploymentOption <DeploymentOptionType>] [-DeployPurpose <DeployPurposeType>] [-InternetOption <Boolean>]\n [-PercentFailure <Int32>] [-PercentSuccess <Int32>] [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType[]>]\n [-ShowTaskSequenceProgress <Boolean>] [-SoftwareInstallation <Boolean>] [-SystemRestart <Boolean>]\n [-TaskSequencePackageId] <String> [-UseUtcForAvailableSchedule <Boolean>] [-UseUtcForExpireSchedule <Boolean>]\n [-DistributeCollectionName <String>] [-DistributeContent] [-DistributionPointGroupName <String>]\n [-DistributionPointName <String>] [-AvailableDateTime <DateTime>] [-Comment <String>]\n [-PersistOnWriteFilterDevice <Boolean>] [-SendWakeupPacket <Boolean>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]"],"uid":"ConfigurationManager.New-CMTaskSequenceDeployment","hideEdit":true,"ms.translationtype":"MT","ms.contentlocale":"ko-kr","loc_version":"2024-08-21T21:18:36.7205003Z","loc_source_id":"Github-72476255#live","loc_file_id":"Github-72476255.live.MSDN.sccm-powershell.sccm-ps/ConfigurationManager/New-CMTaskSequenceDeployment.md","xrefs":[{"href":"https://learn.microsoft.com/powershell/module/configurationmanager/new-cmtasksequencedeployment","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"New-CMTaskSequenceDeployment","schemaType":"PowershellCmdlet","summary":"<p>작업 순서 배포를 만듭니다.</p>\n","uid":"ConfigurationManager.New-CMTaskSequenceDeployment"}],"canonical_url":"https://learn.microsoft.com/ko-kr/powershell/module/configurationmanager/new-cmtasksequencedeployment?view=sccm-ps","_op_canonicalUrl":"https://learn.microsoft.com/ko-kr/powershell/module/configurationmanager/new-cmtasksequencedeployment?view=sccm-ps"},"pageMetadata":"<meta name=\"description\" content=\"<p>\n              <strong>New-CMTaskSequenceDeployment</strong> cmdlet은 작업 순서 배포를 만듭니다. 작업 순서 배포는 컴퓨터 컬렉션에 작업 순서를 할당합니다.</p>\n<div class=&quot;NOTE&quot;>\n<p>참고</p>\n<p>Configuration Manager 사이트 드라이브에서 Configuration Manager cmdlet을 실행합니다(예: <code>PS XYZ:\\&amp;gt;</code>). 자세한 내용은 <a href=&quot;/powershell/sccm/overview&quot;>시작을 참조하세요</a>.</p>\n</div>\n\" />\r\n<meta name=\"hideEdit\" content=\"true\" />\r\n<meta name=\"loc_file_id\" content=\"Github-72476255.live.MSDN.sccm-powershell.sccm-ps/ConfigurationManager/New-CMTaskSequenceDeployment.md\" />\r\n<meta name=\"loc_source_id\" content=\"Github-72476255#live\" />\r\n<meta name=\"loc_version\" content=\"2024-08-21T21:18:36.7205003Z\" />\r\n<meta name=\"module\" content=\"ConfigurationManager\" />\r\n<meta name=\"ms.contentlocale\" content=\"ko-kr\" />\r\n<meta name=\"ms.translationtype\" content=\"MT\" />\r\n<meta name=\"name\" content=\"New-CMTaskSequenceDeployment\" />\r\n<meta name=\"notes\" content=\"<p>일정 매개 변수를 적절하게 사용해야 합니다.</p>\n<ul>\n<li><p>\n              <strong>-AvailableDateTime</strong>: 이 배포를 <em>사용할 수 있는</em> 시기를 지정합니다.</p>\n</li>\n<li><p>\n              <strong>-DeadlineDateTime</strong>: 배포가 <em>만료되는</em> 시기를 지정합니다.</p>\n</li>\n<li><p>\n              <strong>-일정</strong>: 배포 할당 또는 마감일을 지정 <em>합니다</em>.</p>\n</li>\n</ul>\n\" />\r\n<meta name=\"schema\" content=\"PowershellCmdlet\" />\r\n<meta name=\"summary\" content=\"<p>작업 순서 배포를 만듭니다.</p>\n\" />\r\n<meta name=\"syntaxes\" content=\"New-CMTaskSequenceDeployment [-AlertDateTime <DateTime>] [-AllowFallback <Boolean>]\n [-AllowSharedContent <Boolean>] [-Availability <MakeAvailableToType>] [-DeadlineDateTime <DateTime>]\n [-DeploymentOption <DeploymentOptionType>] [-DeployPurpose <DeployPurposeType>] [-InputObject] <IResultObject>\n [-InternetOption <Boolean>] [-PercentFailure <Int32>] [-PercentSuccess <Int32>]\n [-RerunBehavior <RerunBehaviorType>] [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>]\n [-ScheduleEvent <ScheduleEventType[]>] [-ShowTaskSequenceProgress <Boolean>] [-SoftwareInstallation <Boolean>]\n [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>] [-UseUtcForExpireSchedule <Boolean>]\n [-DistributeCollectionName <String>] [-DistributeContent] [-DistributionPointGroupName <String>]\n [-DistributionPointName <String>] [-AvailableDateTime <DateTime>] [-Comment <String>]\n [-PersistOnWriteFilterDevice <Boolean>] [-SendWakeupPacket <Boolean>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"New-CMTaskSequenceDeployment [-AlertDateTime <DateTime>] [-AllowFallback <Boolean>]\n [-AllowSharedContent <Boolean>] [-Availability <MakeAvailableToType>] [-DeadlineDateTime <DateTime>]\n [-DeploymentOption <DeploymentOptionType>] [-DeployPurpose <DeployPurposeType>] [-InternetOption <Boolean>]\n [-PercentFailure <Int32>] [-PercentSuccess <Int32>] [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType[]>]\n [-ShowTaskSequenceProgress <Boolean>] [-SoftwareInstallation <Boolean>] [-SystemRestart <Boolean>]\n [-TaskSequencePackageId] <String> [-UseUtcForAvailableSchedule <Boolean>] [-UseUtcForExpireSchedule <Boolean>]\n [-DistributeCollectionName <String>] [-DistributeContent] [-DistributionPointGroupName <String>]\n [-DistributionPointName <String>] [-AvailableDateTime <DateTime>] [-Comment <String>]\n [-PersistOnWriteFilterDevice <Boolean>] [-SendWakeupPacket <Boolean>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"uid\" content=\"ConfigurationManager.New-CMTaskSequenceDeployment\" />\r\n","themesRelativePathToOutputRoot":"_themes/"}