{"content":"<div></div>","rawMetadata":{"metadata":{"_op_canonicalUrlPrefix":"https://learn.microsoft.com/fr-fr/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":"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":"25/06/2026","updated_at_date_time":"2026-06-25T23:29:38.1055817Z"},"_path":"module/configurationmanager/new-cmpackagedeployment.json","_rel":"../../","_tocRel":"../sccm-ps/toc.json","apiPlatform":"powershell","author":"Banreet","breadcrumb_path":"/powershell/sccm/bread/toc.json","canonical_url":"https://learn.microsoft.com/fr-fr/powershell/module/configurationmanager/new-cmpackagedeployment?view=sccm-ps","content_git_url":"https://github.com/MicrosoftDocs/sccm-docs-powershell-ref/blob/main/sccm-ps/ConfigurationManager/New-CMPackageDeployment.md","default_moniker":"sccm-ps","depot_name":"MSDN.sccm-powershell","description":"Déployez un package hérité dans une collection.","document_id":"cabfb7b9-3081-8d55-263c-c6a21a1b995b","document_version_independent_id":"a1f405c5-475d-af54-1733-0d3cb0e08fc4","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-CMPackageDeployment.md","github_contributors":["aczechowski","gwblok","damabe","mumian","sankethka"],"locale":"fr-fr","manager":"laurawi","Module Name":"ConfigurationManager","monikers":["sccm-ps"],"ms.author":"dannygu","ms.date":"06/16/2021","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-CMPackageDeployment.md","original_content_git_url_template":"{repo}/blob/{branch}/sccm-ps/ConfigurationManager/New-CMPackageDeployment.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-CMPackageDeployment","titleSuffix":"Configuration Manager","uhfHeaderId":"MSDocsHeader-Powershell","updated_at":"2026-06-25 11:29 PM","xrefs":[{"href":"https://learn.microsoft.com/powershell/module/configurationmanager/new-cmpackagedeployment","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"New-CMPackageDeployment","schemaType":"PowershellCmdlet","summary":"<p>Déployez un package hérité dans une collection.</p>\n","uid":"ConfigurationManager.New-CMPackageDeployment"}],"ocv-translation-feedback":true},"_xrefmap":{"ConfigurationManager":{"href":"./","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"ConfigurationManager","schemaType":"PowershellModule","uid":"ConfigurationManager"},"ConfigurationManager.New-CMPackageDeployment":{"href":"new-cmpackagedeployment","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"New-CMPackageDeployment","schemaType":"PowershellCmdlet","summary":"<p>Déployez un package hérité dans une collection.</p>\n","uid":"ConfigurationManager.New-CMPackageDeployment"}},"description":"<p>Utilisez cette applet de commande pour déployer un package sur des ressources d’une collection.\nVous pouvez spécifier la collection par ID, nom ou passer un objet.</p>\n<p>Pour les autres paramètres de déploiement que vous ne pouvez pas configurer avec cette applet de commande, utilisez <a href=\"set-cmpackagedeployment\">Set-CMPackageDeployment</a>.</p>\n<p>Pour plus d’informations, consultez <a href=\"/mem/configmgr/apps/deploy-use/packages-and-programs#deploy-packages-and-programs\">Packages et programmes dans Configuration Manager</a>.</p>\n<div class=\"NOTE\">\n<p>Remarque</p>\n<p>Exécutez des applets de commande Configuration Manager à partir du lecteur de site Configuration Manager, par exemple <code>PS XYZ:\\&gt;</code>. Pour plus d’informations, consultez <a href=\"/powershell/sccm/overview\">Prise en main</a>.</p>\n</div>\n","examples":[{"code":"$pkgId = \"XYZ00001\"\n$collId = \"XYZ0003F\"\nNew-CMPackageDeployment -StandardProgram -PackageId $pkgId -ProgramName \"ScanState\" -CollectionID $collId -Comment \"Use USMT to scan for data\" -DeployPurpose Available","description":"","summary":"<p>Cette commande crée un déploiement du package avec l’ID <strong>XYZ00001</strong> au regroupement avec l’ID <strong>XYZ0003F</strong>.</p>\n","title":"Exemple 1 : Déployer un package par ID"},{"code":"[datetime]$DeadlineTime = (Get-Date -Hour 20 -Minute 0 -Second 0).AddDays(10)\n\n$NewScheduleDeadline = New-CMSchedule -Start $DeadlineTime -Nonrecurring\n\n$pkgId = \"XYZ00001\"\n$progName = \"Run\"\n$collId = \"XYZ0003F\"\n\nNew-CMPackageDeployment -StandardProgram -PackageId $pkgId -ProgramName $progName -DeployPurpose Required -CollectionId $collId -FastNetworkOption DownloadContentFromDistributionPointAndRunLocally -SlowNetworkOption DownloadContentFromDistributionPointAndLocally -RerunBehavior RerunIfFailedPreviousAttempt -Schedule $NewScheduleDeadline","description":"","summary":"<p>La première commande définit une variable pour une échéance à 10 jours à partir de 20h00.\nLa deuxième commande crée un objet de planification basé sur cette échéance qui se répète tous les jours.\nLa troisième commande crée le déploiement de package avec cette planification.</p>\n","title":"Exemple 2 : Déployer un package en fonction des besoins avec une échéance"}],"inputs":[{"description":"","name":"<span class=\"no-loc xref\">Microsoft.ConfigurationManagement.ManagementProvider.IResultObject</span>\n"}],"links":[{"href":"get-cmpackagedeployment","text":"Get-CMPackageDeployment"},{"href":"get-cmpackagedeploymentstatus","text":"Get-CMPackageDeploymentStatus"},{"href":"set-cmpackagedeployment","text":"Set-CMPackageDeployment"},{"href":"remove-cmpackagedeployment","text":"Remove-CMPackageDeployment"},{"href":"get-cmpackage","text":"Get-CMPackage"},{"href":"/mem/configmgr/apps/deploy-use/packages-and-programs#deploy-packages-and-programs","text":"Packages et programmes dans Configuration Manager"}],"module":"ConfigurationManager","name":"New-CMPackageDeployment","notes":"","outputs":[{"description":"","name":"<span class=\"no-loc xref\">System.Object</span>\n"}],"parameters":[{"aliases":"","defaultValue":"None","description":"<p>Autoriser les clients à utiliser des points de distribution du groupe de limites de site par défaut.</p>\n","name":"AllowFallback","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Autoriser les clients à utiliser des points de distribution à partir d’un groupe de limites voisin.</p>\n","name":"AllowSharedContent","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez quand ce déploiement est <em>disponible</em>.</p>\n<p>Utilisez <strong>-DeadlineDateTime</strong> pour spécifier le moment où le déploiement <em>expire</em> et <strong>-Schedule</strong> pour spécifier l’affectation du déploiement, ou <em>échéance</em>.</p>\n<p>Pour obtenir un objet <strong>DateTime</strong> , utilisez l’applet <a href=\"/powershell/module/microsoft.powershell.utility/get-date\">de commande Get-Date</a> .</p>\n","name":"AvailableDateTime","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">DateTime</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez un objet de collection comme cible pour ce déploiement de package. Pour obtenir cet objet, utilisez l’applet <a href=\"get-cmcollection\">de commande Get-CMCollection</a> .</p>\n","name":"Collection","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">IResultObject</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez un ID de collection comme cible pour ce déploiement de package.</p>\n","name":"CollectionId","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"acceptWildcardCharacters":true,"aliases":"","defaultValue":"None","description":"<p>Spécifiez un nom de collection comme cible pour ce déploiement de package.</p>\n","name":"CollectionName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez un commentaire facultatif pour ce déploiement de package.</p>\n","name":"Comment","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"cf","defaultValue":"None","description":"<p>Ajoutez ce paramètre pour demander la confirmation avant d’exécuter l’applet de commande.</p>\n","name":"Confirm","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Utilisez ce paramètre pour spécifier quand le déploiement <em>expire</em>.</p>\n<p>Utilisez <strong>-AvailableDateTime</strong> pour spécifier le moment où le déploiement est <em>disponible</em> et <strong>-Schedule</strong> pour spécifier l’affectation ou <em>l’échéance</em> du déploiement.</p>\n<p>Pour obtenir un objet <strong>DateTime</strong> , utilisez l’applet <a href=\"/powershell/module/microsoft.powershell.utility/get-date\">de commande Get-Date</a> .</p>\n","name":"DeadlineDateTime","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">DateTime</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez si ce déploiement est disponible pour l’installation des utilisateurs ou s’il doit être installé à l’échéance.</p>\n","name":"DeployPurpose","parameterValueGroup":"Available, Required","position":"Named","type":"<span class=\"no-loc xref\">DeployPurposeType</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Si le programme du package que vous déployez est un programme de type appareil, spécifiez ce paramètre.</p>\n<p>Sinon, utilisez le paramètre <strong>StandardProgram</strong> . Le type de programme standard est destiné aux ordinateurs avec le client Configuration Manager.</p>\n","isRequired":true,"name":"DeviceProgram","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Ce paramètre traite les caractères génériques comme des valeurs de caractère littéral. Vous ne pouvez pas la combiner avec <strong>ForceWildcardHandling</strong>.</p>\n","name":"DisableWildcardHandling","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Le site distribue le contenu aux groupes de points de distribution associés à ce nom de collection.</p>\n","name":"DistributeCollectionName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Ajoutez ce paramètre pour distribuer le contenu du package lorsque vous créez ce déploiement. Les clients ne peuvent pas installer le package tant que vous n’avez pas distribué le contenu aux points de distribution auxquels les clients peuvent accéder.</p>\n","name":"DistributeContent","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Le site distribue le contenu à ce groupe de points de distribution.</p>\n","name":"DistributionPointGroupName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Le site distribue le contenu à ce point de distribution.</p>\n","name":"DistributionPointName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez le comportement lorsque le client utilise un point de distribution du groupe de limites actuel :</p>\n<ul>\n<li>Exécuter le programme à partir d’un point de distribution</li>\n<li>Télécharger le contenu à partir du point de distribution et exécuter localement</li>\n</ul>\n<p>Si vous ne spécifiez pas ce paramètre, il utilise <code>DownloadContentFromDistributionPointAndRunLocally</code> par défaut. Cette option est plus sécurisée, car le client valide le hachage du contenu avant d’exécuter le programme.</p>\n","name":"FastNetworkOption","parameterValueGroup":"RunProgramFromDistributionPoint, DownloadContentFromDistributionPointAndRunLocally","position":"Named","type":"<span class=\"no-loc xref\">FastNetworkOptionType</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Ce paramètre traite les caractères génériques et peut entraîner un comportement inattendu (non recommandé). Vous ne pouvez pas la combiner avec <strong>DisableWildcardHandling</strong>.</p>\n","name":"ForceWildcardHandling","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez un objet de package avec le programme à déployer. Pour obtenir cet objet, utilisez l’applet <a href=\"get-cmpackage\">de commande Get-CMPackage</a> .</p>\n","isRequired":true,"name":"Package","parameterValueGroup":"","pipelineInput":true,"position":"0","type":"<span class=\"no-loc xref\">IResultObject</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez l’ID du package avec le programme à déployer. Cet ID est un ID de package standard, par exemple <code>XYZ007E3</code>.</p>\n","isRequired":true,"name":"PackageId","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez le nom du package avec le programme à déployer.</p>\n","isRequired":true,"name":"PackageName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Configurez la façon dont le client gère le filtre d’écriture sur les appareils Windows Embedded.</p>\n<ul>\n<li>\n              <code>$true</code>: Valider les modifications à l’échéance ou pendant une fenêtre de maintenance. Un redémarrage est nécessaire.</li>\n<li>\n              <code>$false</code>: appliquez le contenu sur la superposition et validez ultérieurement.</li>\n</ul>\n","name":"PersistOnWriteFilterDevice","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez un objet de programme à déployer. Pour obtenir cet objet, utilisez l’applet <a href=\"get-cmprogram\">de commande Get-CMProgram</a> .</p>\n","isRequired":true,"name":"Program","parameterValueGroup":"","pipelineInput":true,"position":"0","type":"<span class=\"no-loc xref\">IResultObject</span>\n"},{"aliases":"StandardProgramName, DeviceProgramName","defaultValue":"None","description":"<p>Spécifiez le nom du programme dans le package à déployer.</p>\n","isRequired":true,"name":"ProgramName","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">String</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez une unité pour un déploiement périodique. Utilisez le paramètre <strong>RecurValue</strong> pour spécifier la valeur de cette unité.</p>\n","name":"RecurUnit","parameterValueGroup":"Minutes, Hours, Days","position":"Named","type":"<span class=\"no-loc xref\">RecurUnitType</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez la fréquence à laquelle le déploiement se répète.</p>\n<p>Ce paramètre dépend du type d’unité spécifié dans le paramètre <strong>RecurUnit</strong> :</p>\n<ul>\n<li>\n              <strong>Heures</strong> : cette valeur peut être comprise entre <code>1</code> et <code>23</code></li>\n<li>\n              <strong>Jours</strong> : entre <code>1</code> et <code>31</code></li>\n<li>\n              <strong>Minutes</strong> : entre <code>1</code> et <code>59</code></li>\n</ul>\n","name":"RecurValue","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Int32</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Indiquez si le déploiement s’exécute à nouveau :</p>\n<ul>\n<li>\n              <code>$True</code>: le déploiement s’exécute à nouveau pour les clients comme spécifié dans le paramètre <strong>RerunBehavior</strong> . Cette valeur est la valeur par défaut.</li>\n<li>\n              <code>$False</code>: le déploiement ne s’exécute pas à nouveau.</li>\n</ul>\n","name":"Rerun","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez si le programme s’exécute à nouveau sur un ordinateur.</p>\n<ul>\n<li>\n              <code>NeverRerunDeployedProgram</code>: ne réexécutera pas, même si le déploiement a échoué ou que les fichiers ont changé.</li>\n<li>\n              <code>AlwaysRerunProgram</code>: réexécutez comme prévu, même si le déploiement a réussi. Vous pouvez utiliser cette valeur pour les déploiements récurrents. Cette valeur est la valeur par défaut.</li>\n<li>\n              <code>RerunIfFailedPreviousAttempt</code>: réexécutez comme prévu, si le déploiement a échoué lors de la tentative précédente.</li>\n<li>\n              <code>RerunIfSucceededOnPreviousAttempt</code>: réexécutez uniquement si la tentative précédente a réussi.</li>\n</ul>\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>Autoriser les utilisateurs à exécuter le programme indépendamment des affectations.</p>\n","name":"RunFromSoftwareCenter","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Utilisez ce paramètre pour spécifier l’affectation ou <em>l’échéance</em> du déploiement.</p>\n<p>Utilisez <strong>-AvailableDateTime</strong> pour spécifier quand le déploiement est <em>disponible</em> et <strong>-DeadlineDateTime</strong> pour spécifier le moment où le déploiement <em>expire</em>.</p>\n<p>Spécifiez un tableau d’objets de planification. Un objet schedule définit la planification d’affectation obligatoire pour un déploiement. Pour créer un objet de planification, utilisez l’applet <a href=\"new-cmschedule\">de commande New-CMSchedule</a> .</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>Spécifiez le type d’événement qui détermine quand le déploiement du package s’exécute.</p>\n","name":"ScheduleEvent","parameterValueGroup":"AsSoonAsPossible, LogOn, LogOff","position":"Named","type":"<span class=\"no-loc xref\">ScheduleEventType</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Indique s’il faut envoyer un paquet de mise en éveil aux ordinateurs avant le début du déploiement. Si cette valeur est <code>$True</code>, Configuration Manager met un ordinateur en veille. Si cette valeur est <code>$False</code>, elle ne met pas les ordinateurs en veille. Pour que les ordinateurs sortent, commencez par configurer Wake On LAN.</p>\n","name":"SendWakeupPacket","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Spécifiez le comportement lorsque le client utilise un point de distribution à partir d’un groupe de limites voisin ou du groupe de limites de site par défaut :</p>\n<ul>\n<li>Ne pas exécuter le programme</li>\n<li>Télécharger le contenu à partir du point de distribution et exécuter localement</li>\n<li>Exécuter le programme à partir d’un point de distribution</li>\n</ul>\n<p>Si vous ne spécifiez pas ce paramètre, il utilise <code>DoNotRunProgram</code> par défaut.</p>\n","name":"SlowNetworkOption","parameterValueGroup":"DoNotRunProgram, DownloadContentFromDistributionPointAndLocally, RunProgramFromDistributionPoint","position":"Named","type":"<span class=\"no-loc xref\">SlowNetworkOptionType</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Une fois l’échéance d’installation atteinte, définissez ce paramètre sur <code>$true</code> pour permettre au package de s’installer en dehors de la fenêtre de maintenance.</p>\n","name":"SoftwareInstallation","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Utilisez ce paramètre pour les types de programmes standard. Ce type est destiné aux ordinateurs avec le client Configuration Manager.</p>\n<p>Si le programme du package que vous déployez est un programme de type appareil, utilisez le paramètre <strong>DeviceProgram</strong> .</p>\n","isRequired":true,"name":"StandardProgram","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Lorsque l’échéance d’installation est atteinte, définissez ce paramètre sur <code>$true</code> pour autoriser le redémarrage du système si nécessaire en dehors de la fenêtre de maintenance.</p>\n","name":"SystemRestart","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Indique s’il faut autoriser les clients sur une connexion Internet limitée à télécharger du contenu après l’échéance d’installation, ce qui peut entraîner des coûts plus élevés.</p>\n","name":"UseMeteredNetwork","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Indique si les clients utilisent le temps universel coordonné (UTC) pour déterminer la disponibilité d’un programme. L’heure UTC rend le déploiement disponible en même temps pour tous les ordinateurs. Si vous ne spécifiez pas ce paramètre ou si vous le définissez sur <code>$false</code>, le client utilise son heure locale.</p>\n","name":"UseUtc","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Indique si les clients utilisent le temps universel coordonné (UTC) pour déterminer la disponibilité d’un programme. L’heure UTC rend le déploiement disponible en même temps pour tous les ordinateurs. Si vous ne spécifiez pas ce paramètre ou si vous le définissez sur <code>$false</code>, le client utilise son heure locale.</p>\n","name":"UseUtcForAvailableSchedule","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"","defaultValue":"None","description":"<p>Indique si les clients utilisent le temps universel coordonné (UTC) pour déterminer quand un programme a expiré. L’heure UTC expire le déploiement en même temps pour tous les ordinateurs. Si vous ne spécifiez pas ce paramètre ou si vous le définissez sur <code>$false</code>, le client utilise son heure locale.</p>\n","name":"UseUtcForExpireSchedule","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">Boolean</span>\n"},{"aliases":"wi","defaultValue":"None","description":"<p>Présente ce qui se produit si le cmdlet s’exécute.\nL’applet de commande n’est pas exécutée.</p>\n","name":"WhatIf","parameterValueGroup":"","position":"Named","type":"<span class=\"no-loc xref\">SwitchParameter</span>\n"}],"schema":"PowershellCmdlet","summary":"<p>Déployez un package hérité dans une collection.</p>\n","syntaxes":["New-CMPackageDeployment [-AllowFallback <Boolean>] [-AllowSharedContent <Boolean>]\n [-DeployPurpose <DeployPurposeType>] [-FastNetworkOption <FastNetworkOptionType>] [-Package] <IResultObject>\n [-PersistOnWriteFilterDevice <Boolean>] -ProgramName <String> [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType>]\n [-SendWakeupPacket <Boolean>] [-SlowNetworkOption <SlowNetworkOptionType>] [-SoftwareInstallation <Boolean>]\n [-StandardProgram] [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>]\n [-UseUtcForExpireSchedule <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","New-CMPackageDeployment [-AllowFallback <Boolean>] [-AllowSharedContent <Boolean>]\n [-DeployPurpose <DeployPurposeType>] [-FastNetworkOption <FastNetworkOptionType>] -PackageName <String>\n [-PersistOnWriteFilterDevice <Boolean>] -ProgramName <String> [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType>]\n [-SendWakeupPacket <Boolean>] [-SlowNetworkOption <SlowNetworkOptionType>] [-SoftwareInstallation <Boolean>]\n [-StandardProgram] [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>]\n [-UseUtcForExpireSchedule <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","New-CMPackageDeployment [-AllowFallback <Boolean>] [-AllowSharedContent <Boolean>]\n [-DeployPurpose <DeployPurposeType>] [-FastNetworkOption <FastNetworkOptionType>] -PackageId <String>\n [-PersistOnWriteFilterDevice <Boolean>] -ProgramName <String> [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType>]\n [-SendWakeupPacket <Boolean>] [-SlowNetworkOption <SlowNetworkOptionType>] [-SoftwareInstallation <Boolean>]\n [-StandardProgram] [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>]\n [-UseUtcForExpireSchedule <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","New-CMPackageDeployment [-AllowFallback <Boolean>] [-AllowSharedContent <Boolean>]\n [-DeployPurpose <DeployPurposeType>] [-FastNetworkOption <FastNetworkOptionType>]\n [-PersistOnWriteFilterDevice <Boolean>] [-Program] <IResultObject> [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType>]\n [-SendWakeupPacket <Boolean>] [-SlowNetworkOption <SlowNetworkOptionType>] [-SoftwareInstallation <Boolean>]\n [-StandardProgram] [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>]\n [-UseUtcForExpireSchedule <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","New-CMPackageDeployment [-DeployPurpose <DeployPurposeType>] [-DeviceProgram] -PackageName <String>\n -ProgramName <String> [-RecurUnit <RecurUnitType>] [-RecurValue <Int32>] [-Rerun <Boolean>]\n [-UseUtc <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","New-CMPackageDeployment [-DeployPurpose <DeployPurposeType>] [-DeviceProgram] -PackageId <String>\n -ProgramName <String> [-RecurUnit <RecurUnitType>] [-RecurValue <Int32>] [-Rerun <Boolean>]\n [-UseUtc <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","New-CMPackageDeployment [-DeployPurpose <DeployPurposeType>] [-DeviceProgram] [-Package] <IResultObject>\n -ProgramName <String> [-RecurUnit <RecurUnitType>] [-RecurValue <Int32>] [-Rerun <Boolean>]\n [-UseUtc <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]","New-CMPackageDeployment [-DeployPurpose <DeployPurposeType>] [-DeviceProgram] [-Program] <IResultObject>\n [-RecurUnit <RecurUnitType>] [-RecurValue <Int32>] [-Rerun <Boolean>] [-SendWakeupPacket <Boolean>]\n [-UseUtc <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]"],"uid":"ConfigurationManager.New-CMPackageDeployment","hideEdit":true,"ms.translationtype":"MT","ms.contentlocale":"fr-fr","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-CMPackageDeployment.md","xrefs":[{"href":"https://learn.microsoft.com/powershell/module/configurationmanager/new-cmpackagedeployment","monikerGroup":"f98fea35b6ac2b0f56c6ee5ec06ffce9","name":"New-CMPackageDeployment","schemaType":"PowershellCmdlet","summary":"<p>Déployez un package hérité dans une collection.</p>\n","uid":"ConfigurationManager.New-CMPackageDeployment"}],"canonical_url":"https://learn.microsoft.com/fr-fr/powershell/module/configurationmanager/new-cmpackagedeployment?view=sccm-ps","_op_canonicalUrl":"https://learn.microsoft.com/fr-fr/powershell/module/configurationmanager/new-cmpackagedeployment?view=sccm-ps"},"pageMetadata":"<meta name=\"description\" content=\"<p>Utilisez cette applet de commande pour déployer un package sur des ressources d’une collection.\nVous pouvez spécifier la collection par ID, nom ou passer un objet.</p>\n<p>Pour les autres paramètres de déploiement que vous ne pouvez pas configurer avec cette applet de commande, utilisez <a href=&quot;set-cmpackagedeployment&quot;>Set-CMPackageDeployment</a>.</p>\n<p>Pour plus d’informations, consultez <a href=&quot;/mem/configmgr/apps/deploy-use/packages-and-programs#deploy-packages-and-programs&quot;>Packages et programmes dans Configuration Manager</a>.</p>\n<div class=&quot;NOTE&quot;>\n<p>Remarque</p>\n<p>Exécutez des applets de commande Configuration Manager à partir du lecteur de site Configuration Manager, par exemple <code>PS XYZ:\\&amp;gt;</code>. Pour plus d’informations, consultez <a href=&quot;/powershell/sccm/overview&quot;>Prise en main</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-CMPackageDeployment.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=\"fr-fr\" />\r\n<meta name=\"ms.translationtype\" content=\"MT\" />\r\n<meta name=\"name\" content=\"New-CMPackageDeployment\" />\r\n<meta name=\"notes\" content=\"\" />\r\n<meta name=\"schema\" content=\"PowershellCmdlet\" />\r\n<meta name=\"summary\" content=\"<p>Déployez un package hérité dans une collection.</p>\n\" />\r\n<meta name=\"syntaxes\" content=\"New-CMPackageDeployment [-AllowFallback <Boolean>] [-AllowSharedContent <Boolean>]\n [-DeployPurpose <DeployPurposeType>] [-FastNetworkOption <FastNetworkOptionType>] [-Package] <IResultObject>\n [-PersistOnWriteFilterDevice <Boolean>] -ProgramName <String> [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType>]\n [-SendWakeupPacket <Boolean>] [-SlowNetworkOption <SlowNetworkOptionType>] [-SoftwareInstallation <Boolean>]\n [-StandardProgram] [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>]\n [-UseUtcForExpireSchedule <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"New-CMPackageDeployment [-AllowFallback <Boolean>] [-AllowSharedContent <Boolean>]\n [-DeployPurpose <DeployPurposeType>] [-FastNetworkOption <FastNetworkOptionType>] -PackageName <String>\n [-PersistOnWriteFilterDevice <Boolean>] -ProgramName <String> [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType>]\n [-SendWakeupPacket <Boolean>] [-SlowNetworkOption <SlowNetworkOptionType>] [-SoftwareInstallation <Boolean>]\n [-StandardProgram] [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>]\n [-UseUtcForExpireSchedule <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"New-CMPackageDeployment [-AllowFallback <Boolean>] [-AllowSharedContent <Boolean>]\n [-DeployPurpose <DeployPurposeType>] [-FastNetworkOption <FastNetworkOptionType>] -PackageId <String>\n [-PersistOnWriteFilterDevice <Boolean>] -ProgramName <String> [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType>]\n [-SendWakeupPacket <Boolean>] [-SlowNetworkOption <SlowNetworkOptionType>] [-SoftwareInstallation <Boolean>]\n [-StandardProgram] [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>]\n [-UseUtcForExpireSchedule <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"New-CMPackageDeployment [-AllowFallback <Boolean>] [-AllowSharedContent <Boolean>]\n [-DeployPurpose <DeployPurposeType>] [-FastNetworkOption <FastNetworkOptionType>]\n [-PersistOnWriteFilterDevice <Boolean>] [-Program] <IResultObject> [-RerunBehavior <RerunBehaviorType>]\n [-RunFromSoftwareCenter <Boolean>] [-Schedule <IResultObject[]>] [-ScheduleEvent <ScheduleEventType>]\n [-SendWakeupPacket <Boolean>] [-SlowNetworkOption <SlowNetworkOptionType>] [-SoftwareInstallation <Boolean>]\n [-StandardProgram] [-SystemRestart <Boolean>] [-UseUtcForAvailableSchedule <Boolean>]\n [-UseUtcForExpireSchedule <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"New-CMPackageDeployment [-DeployPurpose <DeployPurposeType>] [-DeviceProgram] -PackageName <String>\n -ProgramName <String> [-RecurUnit <RecurUnitType>] [-RecurValue <Int32>] [-Rerun <Boolean>]\n [-UseUtc <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"New-CMPackageDeployment [-DeployPurpose <DeployPurposeType>] [-DeviceProgram] -PackageId <String>\n -ProgramName <String> [-RecurUnit <RecurUnitType>] [-RecurValue <Int32>] [-Rerun <Boolean>]\n [-UseUtc <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"New-CMPackageDeployment [-DeployPurpose <DeployPurposeType>] [-DeviceProgram] [-Package] <IResultObject>\n -ProgramName <String> [-RecurUnit <RecurUnitType>] [-RecurValue <Int32>] [-Rerun <Boolean>]\n [-UseUtc <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"syntaxes\" content=\"New-CMPackageDeployment [-DeployPurpose <DeployPurposeType>] [-DeviceProgram] [-Program] <IResultObject>\n [-RecurUnit <RecurUnitType>] [-RecurValue <Int32>] [-Rerun <Boolean>] [-SendWakeupPacket <Boolean>]\n [-UseUtc <Boolean>] [-DistributeCollectionName <String>] [-DistributeContent]\n [-DistributionPointGroupName <String>] [-DistributionPointName <String>] [-AvailableDateTime <DateTime>]\n [-Comment <String>] [-DeadlineDateTime <DateTime>] [-UseMeteredNetwork <Boolean>]\n [-Collection <IResultObject>] [-CollectionId <String>] [-CollectionName <String>] [-DisableWildcardHandling]\n [-ForceWildcardHandling] [-WhatIf] [-Confirm] [<CommonParameters>]\" />\r\n<meta name=\"uid\" content=\"ConfigurationManager.New-CMPackageDeployment\" />\r\n","themesRelativePathToOutputRoot":"_themes/"}