<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr">
	<id>https://sacawiki.3w-comm.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Deslu2</id>
	<title>Wiki du sac - Contributions [fr]</title>
	<link rel="self" type="application/atom+xml" href="https://sacawiki.3w-comm.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Deslu2"/>
	<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php/Sp%C3%A9cial:Contributions/Deslu2"/>
	<updated>2026-09-17T09:49:38Z</updated>
	<subtitle>Contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=463</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=463"/>
		<updated>2026-03-19T21:35:22Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Désinstaller un package spécifique : */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Applications du Microsoft Store (Appx)==&lt;br /&gt;
C&#039;est la méthode la plus courante pour les applications intégrées (comme Calculatrice, Photos ou Office préinstallé).&lt;br /&gt;
&lt;br /&gt;
===Lister les packages :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage | Select Name, Version, NonRemovable | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Si la colonne &#039;&#039;&#039;NonRemovable&#039;&#039;&#039; est à &#039;&#039;&#039;False&#039;&#039;&#039;, il est possible de le désinstaller.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Utilisez le code avec précaution.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un package spécifique :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage -Name &amp;quot;NomDuPackage&amp;quot; | Remove-AppxPackage&lt;br /&gt;
----&lt;br /&gt;
Retour au [[PowerShell]] &amp;lt;- [[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Qui_est_logg%C3%A9_sur_le_poste%3F&amp;diff=462</id>
		<title>Qui est loggé sur le poste?</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Qui_est_logg%C3%A9_sur_le_poste%3F&amp;diff=462"/>
		<updated>2026-03-19T21:34:58Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Identifier qui est branché sur l&#039;ordinateur:&lt;br /&gt;
 query session&lt;br /&gt;
[[Fichier:QuerySession.png|centré]]&lt;br /&gt;
&#039;&#039;On voit ici que dubhu1 est déconnecté mais que la session est toujours active&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
On pourrait le déconnecter avec la commande suivante:&lt;br /&gt;
 logoff &amp;lt;ID&amp;gt;&lt;br /&gt;
[[Fichier:QuerySessionlogoff.png|centré]]&lt;br /&gt;
----&lt;br /&gt;
Retour au [[PowerShell]] &amp;lt;- [[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=461</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=461"/>
		<updated>2026-03-19T21:33:35Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Applications du Microsoft Store (Appx)==&lt;br /&gt;
C&#039;est la méthode la plus courante pour les applications intégrées (comme Calculatrice, Photos ou Office préinstallé).&lt;br /&gt;
&lt;br /&gt;
===Lister les packages :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage | Select Name, Version, NonRemovable | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Si la colonne &#039;&#039;&#039;NonRemovable&#039;&#039;&#039; est à &#039;&#039;&#039;False&#039;&#039;&#039;, il est possible de le désinstaller.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Utilisez le code avec précaution.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un package spécifique :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage -Name &amp;quot;NomDuPackage&amp;quot; | Remove-AppxPackage&lt;br /&gt;
&lt;br /&gt;
Retour au [[PowerShell]] &amp;lt;- [[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=PowerShell&amp;diff=460</id>
		<title>PowerShell</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=PowerShell&amp;diff=460"/>
		<updated>2026-03-19T21:32:59Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pour faire des commandes PowerShell à distance sur un poste...&lt;br /&gt;
&lt;br /&gt;
Avec ton compte ADM...&lt;br /&gt;
&lt;br /&gt;
#Tu dois trouver le poste dans l&#039;AD &lt;br /&gt;
#Tu dois demarrer le service : &#039;&#039;&#039;Gestion à distance de Windows (Gestion WSM)&#039;&#039;&#039;&lt;br /&gt;
#Ouvrir une fenêtre PowerShell sur ton ordinateur en tant que ADM...&lt;br /&gt;
#Executer la commande suivante :&lt;br /&gt;
 Enter-PSSession &amp;lt;Nom du Poste&amp;gt;&lt;br /&gt;
[[Fichier:Enter-PSsession.png|center]]&lt;br /&gt;
&lt;br /&gt;
Tu peux maintenant à exécuter des commandes PowerShell sur le poste...&lt;br /&gt;
&lt;br /&gt;
===Voici des exemples: ===&lt;br /&gt;
*[[Désinstaller un logiciel]]&lt;br /&gt;
*[[Qui est loggé sur le poste?]]&lt;br /&gt;
----&lt;br /&gt;
Retour à [[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=459</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=459"/>
		<updated>2026-03-19T21:30:09Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Lister les packages : */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Applications du Microsoft Store (Appx)==&lt;br /&gt;
C&#039;est la méthode la plus courante pour les applications intégrées (comme Calculatrice, Photos ou Office préinstallé).&lt;br /&gt;
&lt;br /&gt;
===Lister les packages :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage | Select Name, Version, NonRemovable | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Si la colonne &#039;&#039;&#039;NonRemovable&#039;&#039;&#039; est à &#039;&#039;&#039;False&#039;&#039;&#039;, il est possible de le désinstaller.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: red&amp;quot;&amp;gt;Utilisez le code avec précaution.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un package spécifique :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage -Name &amp;quot;NomDuPackage&amp;quot; | Remove-AppxPackage&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=458</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=458"/>
		<updated>2026-03-19T21:27:38Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Lister les packages : */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Applications du Microsoft Store (Appx)==&lt;br /&gt;
C&#039;est la méthode la plus courante pour les applications intégrées (comme Calculatrice, Photos ou Office préinstallé).&lt;br /&gt;
&lt;br /&gt;
===Lister les packages :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage | Select Name, Version, NonRemovable | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Si la colonne &#039;&#039;&#039;NonRemovable&#039;&#039;&#039; est à &#039;&#039;&#039;False&#039;&#039;&#039;, il est possible de le désinstaller.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;color: red&amp;quot;&amp;gt;Utilisez le code avec précaution.&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un package spécifique :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage -Name &amp;quot;NomDuPackage&amp;quot; | Remove-AppxPackage&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=457</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=457"/>
		<updated>2026-03-19T21:26:45Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Lister les packages : */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Applications du Microsoft Store (Appx)==&lt;br /&gt;
C&#039;est la méthode la plus courante pour les applications intégrées (comme Calculatrice, Photos ou Office préinstallé).&lt;br /&gt;
&lt;br /&gt;
===Lister les packages :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage | Select Name, Version, NonRemovable | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Si la colonne &#039;&#039;&#039;NonRemovable&#039;&#039;&#039; est à &#039;&#039;&#039;False&#039;&#039;&#039;, il est possible de le désinstaller.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;pre style=&amp;quot;color: red&amp;quot;&amp;gt;Utilisez le code avec précaution.&amp;lt;/pre&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un package spécifique :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage -Name &amp;quot;NomDuPackage&amp;quot; | Remove-AppxPackage&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=456</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=456"/>
		<updated>2026-03-19T21:21:31Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Lister les packages : */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Applications du Microsoft Store (Appx)==&lt;br /&gt;
C&#039;est la méthode la plus courante pour les applications intégrées (comme Calculatrice, Photos ou Office préinstallé).&lt;br /&gt;
&lt;br /&gt;
===Lister les packages :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage | Select Name, Version, NonRemovable | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Si la colonne &#039;&#039;&#039;NonRemovable&#039;&#039;&#039; est à &#039;&#039;&#039;False&#039;&#039;&#039;, il est possible de le désinstaller.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;small&amp;gt;&amp;lt;red&amp;gt;Utilisez le code avec précaution.&amp;lt;/red&amp;gt;&amp;lt;/small&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un package spécifique :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage -Name &amp;quot;NomDuPackage&amp;quot; | Remove-AppxPackage&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=455</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=455"/>
		<updated>2026-03-19T21:18:20Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Désinstaller un package spécifique : */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Applications du Microsoft Store (Appx)==&lt;br /&gt;
C&#039;est la méthode la plus courante pour les applications intégrées (comme Calculatrice, Photos ou Office préinstallé).&lt;br /&gt;
&lt;br /&gt;
===Lister les packages :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage | Select Name, Version, NonRemovable | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Utilisez le code avec précaution.&lt;br /&gt;
Si la colonne NonRemovable est à False, il est possible de le désinstaller&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un package spécifique :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage -Name &amp;quot;NomDuPackage&amp;quot; | Remove-AppxPackage&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=454</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=454"/>
		<updated>2026-03-19T21:18:02Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Applications du Microsoft Store (Appx) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Applications du Microsoft Store (Appx)==&lt;br /&gt;
C&#039;est la méthode la plus courante pour les applications intégrées (comme Calculatrice, Photos ou Office préinstallé).&lt;br /&gt;
&lt;br /&gt;
===Lister les packages :===&lt;br /&gt;
&lt;br /&gt;
 Get-AppxPackage | Select Name, Version, NonRemovable | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Utilisez le code avec précaution.&lt;br /&gt;
Si la colonne NonRemovable est à False, il est possible de le désinstaller&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un package spécifique :===&lt;br /&gt;
powershell&lt;br /&gt;
Get-AppxPackage -Name &amp;quot;NomDuPackage&amp;quot; | Remove-AppxPackage&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=453</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=453"/>
		<updated>2026-03-19T21:13:50Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
==Applications du Microsoft Store (Appx)==&lt;br /&gt;
C&#039;est la méthode la plus courante pour les applications intégrées (comme Calculatrice, Photos ou Office préinstallé).&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Qui_est_logg%C3%A9_sur_le_poste%3F&amp;diff=452</id>
		<title>Qui est loggé sur le poste?</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Qui_est_logg%C3%A9_sur_le_poste%3F&amp;diff=452"/>
		<updated>2026-03-19T20:53:05Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : Page créée avec « Identifier qui est branché sur l&amp;#039;ordinateur:  query session centré &amp;#039;&amp;#039;On voit ici que dubhu1 est déconnecté mais que la session est toujours active&amp;#039;&amp;#039;  On pourrait le déconnecter avec la commande suivante:  logoff &amp;lt;ID&amp;gt; centré »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Identifier qui est branché sur l&#039;ordinateur:&lt;br /&gt;
 query session&lt;br /&gt;
[[Fichier:QuerySession.png|centré]]&lt;br /&gt;
&#039;&#039;On voit ici que dubhu1 est déconnecté mais que la session est toujours active&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
On pourrait le déconnecter avec la commande suivante:&lt;br /&gt;
 logoff &amp;lt;ID&amp;gt;&lt;br /&gt;
[[Fichier:QuerySessionlogoff.png|centré]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Fichier:QuerySessionlogoff.png&amp;diff=451</id>
		<title>Fichier:QuerySessionlogoff.png</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Fichier:QuerySessionlogoff.png&amp;diff=451"/>
		<updated>2026-03-19T20:51:41Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;QuerySessionLogoff&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Fichier:QuerySession.png&amp;diff=450</id>
		<title>Fichier:QuerySession.png</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Fichier:QuerySession.png&amp;diff=450"/>
		<updated>2026-03-19T20:44:45Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;QuerySession&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=449</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=449"/>
		<updated>2026-03-19T20:24:33Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Les outils de travail */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Wiki du sac&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les outils de travail ==&lt;br /&gt;
&lt;br /&gt;
* [[Le centre logiciel | Le centre logiciel]] (SCCM)&lt;br /&gt;
* [[Le Parfait petit sac | Le Parfait petit sac]]&lt;br /&gt;
* [[Active Directory | L&#039;Active Directory]]&lt;br /&gt;
* [[PowerShell]]&lt;br /&gt;
* [https://gsti.p17.c2itsm.com C2-itsm] &#039;&#039;&amp;lt;small&amp;gt;Avec Edge &#039;&#039;&#039;seulement&#039;&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&lt;br /&gt;
* [[Gestion des licences]]&lt;br /&gt;
* [[Comptes Inter-domaine]]&lt;br /&gt;
&lt;br /&gt;
== Les logiciels ==&lt;br /&gt;
* Adobe Acrobat&lt;br /&gt;
* [[ArcGis]]&lt;br /&gt;
* [[Avaya]]&lt;br /&gt;
* [[Entrust tout|Entrust]]&lt;br /&gt;
* [[Microsoft Office]]&lt;br /&gt;
* [[OneDrive | OneDrive]]&lt;br /&gt;
* [[SAFI]]&lt;br /&gt;
* [[VPN]]&lt;br /&gt;
* [[XMind]]&lt;br /&gt;
&lt;br /&gt;
== Type d&#039;ordinateurs ==&lt;br /&gt;
*[[Dell]]&lt;br /&gt;
*[[Postes Géomatiques]]&lt;br /&gt;
*[[Téléphones intelligents]]&lt;br /&gt;
&lt;br /&gt;
== Les Incidents les plus courants ==&lt;br /&gt;
* Ordinateurs&lt;br /&gt;
* [[Réseaux internes]] (Ministère)&lt;br /&gt;
* [[Réseaux Sans-fil]]&lt;br /&gt;
* Virus&lt;br /&gt;
&lt;br /&gt;
== Les partenaires d&#039;affaires ==&lt;br /&gt;
* [[Les Appels de services]]&lt;br /&gt;
* [[Les coordonnateurs régionaux]]&lt;br /&gt;
&lt;br /&gt;
== Formations ==&lt;br /&gt;
* [[Outils de formations]]&lt;br /&gt;
&lt;br /&gt;
== Divers ==&lt;br /&gt;
* [[Installer Android sur PC]]&lt;br /&gt;
* Formation Debian GNU/Linux [[http://linux.bouzzi.com HTML]] - [[http://linux.bouzzi.com/fichiers/FormationLinux.pdf PDF]]&lt;br /&gt;
* [[Commandes Linux]]&lt;br /&gt;
* [[Commandes CMD]]&lt;br /&gt;
* [[Tweak Windows 11]]&lt;br /&gt;
&lt;br /&gt;
==Archives==&lt;br /&gt;
* [[Windows 10]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=448</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=448"/>
		<updated>2026-03-19T20:22:54Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
Enter la commande suivante:&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel (ex.: MindManager)&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
Enter les commandes suivantes:&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app &#039;&#039;(pour verifier qu&#039;il s&#039;agit du bon logiciel)&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=447</id>
		<title>Désinstaller un logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstaller_un_logiciel&amp;diff=447"/>
		<updated>2026-03-19T20:17:37Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : Page créée avec « ===Lister les logiciels installés:===   Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name  Prendre en note le nom du logiciel  ===Désinstaller un logiciel: ===  $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &amp;#039;%MindManager%&amp;#039;&amp;quot;    $app.Uninstall() »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Lister les logiciels installés:===&lt;br /&gt;
&lt;br /&gt;
 Get-WmiObject Win32_Product | select Name,Version,Vendor | Sort-Object -Property Name&lt;br /&gt;
&lt;br /&gt;
Prendre en note le nom du logiciel&lt;br /&gt;
&lt;br /&gt;
===Désinstaller un logiciel: ===&lt;br /&gt;
 $app = Get-WmiObject -Class Win32_Product -Filter &amp;quot;Name like &#039;%MindManager%&#039;&amp;quot;&lt;br /&gt;
 &lt;br /&gt;
 $app.Uninstall()&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=PowerShell&amp;diff=446</id>
		<title>PowerShell</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=PowerShell&amp;diff=446"/>
		<updated>2026-03-19T20:13:00Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pour faire des commandes PowerShell à distance sur un poste...&lt;br /&gt;
&lt;br /&gt;
Avec ton compte ADM...&lt;br /&gt;
&lt;br /&gt;
#Tu dois trouver le poste dans l&#039;AD &lt;br /&gt;
#Tu dois demarrer le service : &#039;&#039;&#039;Gestion à distance de Windows (Gestion WSM)&#039;&#039;&#039;&lt;br /&gt;
#Ouvrir une fenêtre PowerShell sur ton ordinateur en tant que ADM...&lt;br /&gt;
#Executer la commande suivante :&lt;br /&gt;
 Enter-PSSession &amp;lt;Nom du Poste&amp;gt;&lt;br /&gt;
[[Fichier:Enter-PSsession.png|center]]&lt;br /&gt;
&lt;br /&gt;
Tu peux maintenant à exécuter des commandes PowerShell sur le poste...&lt;br /&gt;
&lt;br /&gt;
===Voici des exemples: ===&lt;br /&gt;
*[[Désinstaller un logiciel]]&lt;br /&gt;
*[[Qui est loggé sur le poste?]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=PowerShell&amp;diff=445</id>
		<title>PowerShell</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=PowerShell&amp;diff=445"/>
		<updated>2026-03-19T20:03:49Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : Page créée avec « Pour faire des commandes PowerShell à distance sur un poste...  Avec ton compte ADM...  #Tu dois trouver le poste dans l&amp;#039;AD  #Tu dois demarrer le service : &amp;#039;&amp;#039;&amp;#039;Gestion à distance de Windows (Gestion WSM)&amp;#039;&amp;#039;&amp;#039; #Ouvrir une fenêtre PowerShell sur ton ordinateur en tant que ADM... #Executer la commande suivante :  Enter-PSSession &amp;lt;Nom du Poste&amp;gt; center  Tu peux maintenant à exécuter des commandes PowerShell sur le poste... »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pour faire des commandes PowerShell à distance sur un poste...&lt;br /&gt;
&lt;br /&gt;
Avec ton compte ADM...&lt;br /&gt;
&lt;br /&gt;
#Tu dois trouver le poste dans l&#039;AD &lt;br /&gt;
#Tu dois demarrer le service : &#039;&#039;&#039;Gestion à distance de Windows (Gestion WSM)&#039;&#039;&#039;&lt;br /&gt;
#Ouvrir une fenêtre PowerShell sur ton ordinateur en tant que ADM...&lt;br /&gt;
#Executer la commande suivante :&lt;br /&gt;
 Enter-PSSession &amp;lt;Nom du Poste&amp;gt;&lt;br /&gt;
[[Fichier:Enter-PSsession.png|center]]&lt;br /&gt;
&lt;br /&gt;
Tu peux maintenant à exécuter des commandes PowerShell sur le poste...&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Fichier:Enter-PSsession.png&amp;diff=444</id>
		<title>Fichier:Enter-PSsession.png</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Fichier:Enter-PSsession.png&amp;diff=444"/>
		<updated>2026-03-19T19:57:16Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Enter-PSsession&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Commande_NETSH&amp;diff=443</id>
		<title>Commande NETSH</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Commande_NETSH&amp;diff=443"/>
		<updated>2026-03-19T17:32:28Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Configuation des cartes reseaux */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Liste des réseau Wifi connus===&lt;br /&gt;
Ligne de commande CMD:&lt;br /&gt;
 netsh wlan show profiles&lt;br /&gt;
&lt;br /&gt;
===Configuation des cartes reseaux===&lt;br /&gt;
Ligne de commande CMD:&lt;br /&gt;
 netsh interface ip show config&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Commande_NETSH&amp;diff=442</id>
		<title>Commande NETSH</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Commande_NETSH&amp;diff=442"/>
		<updated>2026-03-19T17:32:16Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Liste des réseau Wifi connus */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Liste des réseau Wifi connus===&lt;br /&gt;
Ligne de commande CMD:&lt;br /&gt;
 netsh wlan show profiles&lt;br /&gt;
&lt;br /&gt;
===Configuation des cartes reseaux===&lt;br /&gt;
 netsh interface ip show config&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=441</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=441"/>
		<updated>2026-03-19T17:29:21Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Les Incidents les plus courants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Wiki du sac&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les outils de travail ==&lt;br /&gt;
&lt;br /&gt;
* [[Le centre logiciel | Le centre logiciel]] (SCCM)&lt;br /&gt;
* [[Le Parfait petit sac | Le Parfait petit sac]]&lt;br /&gt;
* [[Active Directory | L&#039;Active Directory]]&lt;br /&gt;
* PowerShell&lt;br /&gt;
* [https://gsti.p17.c2itsm.com C2-itsm] &#039;&#039;&amp;lt;small&amp;gt;Avec Edge &#039;&#039;&#039;seulement&#039;&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&lt;br /&gt;
* [[Gestion des licences]]&lt;br /&gt;
* [[Comptes Inter-domaine]]&lt;br /&gt;
&lt;br /&gt;
== Les logiciels ==&lt;br /&gt;
* Adobe Acrobat&lt;br /&gt;
* [[ArcGis]]&lt;br /&gt;
* [[Avaya]]&lt;br /&gt;
* [[Entrust tout|Entrust]]&lt;br /&gt;
* [[Microsoft Office]]&lt;br /&gt;
* [[OneDrive | OneDrive]]&lt;br /&gt;
* [[SAFI]]&lt;br /&gt;
* [[VPN]]&lt;br /&gt;
* [[XMind]]&lt;br /&gt;
&lt;br /&gt;
== Type d&#039;ordinateurs ==&lt;br /&gt;
*[[Dell]]&lt;br /&gt;
*[[Postes Géomatiques]]&lt;br /&gt;
*[[Téléphones intelligents]]&lt;br /&gt;
&lt;br /&gt;
== Les Incidents les plus courants ==&lt;br /&gt;
* Ordinateurs&lt;br /&gt;
* [[Réseaux internes]] (Ministère)&lt;br /&gt;
* [[Réseaux Sans-fil]]&lt;br /&gt;
* Virus&lt;br /&gt;
&lt;br /&gt;
== Les partenaires d&#039;affaires ==&lt;br /&gt;
* [[Les Appels de services]]&lt;br /&gt;
* [[Les coordonnateurs régionaux]]&lt;br /&gt;
&lt;br /&gt;
== Formations ==&lt;br /&gt;
* [[Outils de formations]]&lt;br /&gt;
&lt;br /&gt;
== Divers ==&lt;br /&gt;
* [[Installer Android sur PC]]&lt;br /&gt;
* Formation Debian GNU/Linux [[http://linux.bouzzi.com HTML]] - [[http://linux.bouzzi.com/fichiers/FormationLinux.pdf PDF]]&lt;br /&gt;
* [[Commandes Linux]]&lt;br /&gt;
* [[Commandes CMD]]&lt;br /&gt;
* [[Tweak Windows 11]]&lt;br /&gt;
&lt;br /&gt;
==Archives==&lt;br /&gt;
* [[Windows 10]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=440</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=440"/>
		<updated>2026-03-19T15:42:34Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Les outils de travail */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Wiki du sac&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les outils de travail ==&lt;br /&gt;
&lt;br /&gt;
* [[Le centre logiciel | Le centre logiciel]] (SCCM)&lt;br /&gt;
* [[Le Parfait petit sac | Le Parfait petit sac]]&lt;br /&gt;
* [[Active Directory | L&#039;Active Directory]]&lt;br /&gt;
* PowerShell&lt;br /&gt;
* [https://gsti.p17.c2itsm.com C2-itsm] &#039;&#039;&amp;lt;small&amp;gt;Avec Edge &#039;&#039;&#039;seulement&#039;&#039;&#039;&amp;lt;/small&amp;gt;&#039;&#039;&lt;br /&gt;
* [[Gestion des licences]]&lt;br /&gt;
* [[Comptes Inter-domaine]]&lt;br /&gt;
&lt;br /&gt;
== Les logiciels ==&lt;br /&gt;
* Adobe Acrobat&lt;br /&gt;
* [[ArcGis]]&lt;br /&gt;
* [[Avaya]]&lt;br /&gt;
* [[Entrust tout|Entrust]]&lt;br /&gt;
* [[Microsoft Office]]&lt;br /&gt;
* [[OneDrive | OneDrive]]&lt;br /&gt;
* [[SAFI]]&lt;br /&gt;
* [[VPN]]&lt;br /&gt;
* [[XMind]]&lt;br /&gt;
&lt;br /&gt;
== Type d&#039;ordinateurs ==&lt;br /&gt;
*[[Dell]]&lt;br /&gt;
*[[Postes Géomatiques]]&lt;br /&gt;
*[[Téléphones intelligents]]&lt;br /&gt;
&lt;br /&gt;
== Les Incidents les plus courants ==&lt;br /&gt;
* Ordinateurs&lt;br /&gt;
* [[Réseaux internes]] (Ministère)&lt;br /&gt;
* [[Réseaux Sans-fil]]&lt;br /&gt;
* [[Virus]]&lt;br /&gt;
&lt;br /&gt;
== Les partenaires d&#039;affaires ==&lt;br /&gt;
* [[Les Appels de services]]&lt;br /&gt;
* [[Les coordonnateurs régionaux]]&lt;br /&gt;
&lt;br /&gt;
== Formations ==&lt;br /&gt;
* [[Outils de formations]]&lt;br /&gt;
&lt;br /&gt;
== Divers ==&lt;br /&gt;
* [[Installer Android sur PC]]&lt;br /&gt;
* Formation Debian GNU/Linux [[http://linux.bouzzi.com HTML]] - [[http://linux.bouzzi.com/fichiers/FormationLinux.pdf PDF]]&lt;br /&gt;
* [[Commandes Linux]]&lt;br /&gt;
* [[Commandes CMD]]&lt;br /&gt;
* [[Tweak Windows 11]]&lt;br /&gt;
&lt;br /&gt;
==Archives==&lt;br /&gt;
* [[Windows 10]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=439</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=439"/>
		<updated>2026-03-19T15:35:11Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Wiki du sac&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les outils de travail ==&lt;br /&gt;
&lt;br /&gt;
* [[Le centre logiciel | Le centre logiciel]] (SCCM)&lt;br /&gt;
* [[Le Parfait petit sac | Le Parfait petit sac]]&lt;br /&gt;
* [[Active Directory | L&#039;Active Directory]]&lt;br /&gt;
* PowerShell&lt;br /&gt;
* C2 Atom&lt;br /&gt;
* [[Gestion des licences]]&lt;br /&gt;
* [[Comptes Inter-domaine]]&lt;br /&gt;
&lt;br /&gt;
== Les logiciels ==&lt;br /&gt;
* Adobe Acrobat&lt;br /&gt;
* [[ArcGis]]&lt;br /&gt;
* [[Avaya]]&lt;br /&gt;
* [[Entrust tout|Entrust]]&lt;br /&gt;
* [[Microsoft Office]]&lt;br /&gt;
* [[OneDrive | OneDrive]]&lt;br /&gt;
* [[SAFI]]&lt;br /&gt;
* [[VPN]]&lt;br /&gt;
* [[XMind]]&lt;br /&gt;
&lt;br /&gt;
== Type d&#039;ordinateurs ==&lt;br /&gt;
*[[Dell]]&lt;br /&gt;
*[[Postes Géomatiques]]&lt;br /&gt;
*[[Téléphones intelligents]]&lt;br /&gt;
&lt;br /&gt;
== Les Incidents les plus courants ==&lt;br /&gt;
* Ordinateurs&lt;br /&gt;
* [[Réseaux internes]] (Ministère)&lt;br /&gt;
* [[Réseaux Sans-fil]]&lt;br /&gt;
* [[Virus]]&lt;br /&gt;
&lt;br /&gt;
== Les partenaires d&#039;affaires ==&lt;br /&gt;
* [[Les Appels de services]]&lt;br /&gt;
* [[Les coordonnateurs régionaux]]&lt;br /&gt;
&lt;br /&gt;
== Formations ==&lt;br /&gt;
* [[Outils de formations]]&lt;br /&gt;
&lt;br /&gt;
== Divers ==&lt;br /&gt;
* [[Installer Android sur PC]]&lt;br /&gt;
* Formation Debian GNU/Linux [[http://linux.bouzzi.com HTML]] - [[http://linux.bouzzi.com/fichiers/FormationLinux.pdf PDF]]&lt;br /&gt;
* [[Commandes Linux]]&lt;br /&gt;
* [[Commandes CMD]]&lt;br /&gt;
* [[Tweak Windows 11]]&lt;br /&gt;
&lt;br /&gt;
==Archives==&lt;br /&gt;
* [[Windows 10]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=R%C3%A9seaux_internes&amp;diff=438</id>
		<title>Réseaux internes</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=R%C3%A9seaux_internes&amp;diff=438"/>
		<updated>2025-04-16T11:53:03Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* intranet.mrn.gouv&lt;br /&gt;
* Foncierqc.intra&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Retour à l&#039;[[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=R%C3%A9seaux_internes&amp;diff=437</id>
		<title>Réseaux internes</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=R%C3%A9seaux_internes&amp;diff=437"/>
		<updated>2025-04-16T11:51:31Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : Page créée avec « * intranet.mrn.gouv * Foncierqc.intra »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* intranet.mrn.gouv&lt;br /&gt;
* Foncierqc.intra&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=436</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=436"/>
		<updated>2025-04-16T11:49:57Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Les Incidents les plus courants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Wiki du sac&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les outils de travail ==&lt;br /&gt;
&lt;br /&gt;
* [[Le centre logiciel | Le centre logiciel]] (SCCM)&lt;br /&gt;
* [[Le Parfait petit sac | Le Parfait petit sac]]&lt;br /&gt;
* [[Active Directory | L&#039;Active Directory]]&lt;br /&gt;
* PowerShell&lt;br /&gt;
* C2 Atom&lt;br /&gt;
* [[Gestion des licences]]&lt;br /&gt;
* [[Comptes Inter-domaine]]&lt;br /&gt;
&lt;br /&gt;
== Les logiciels ==&lt;br /&gt;
* Adobe Acrobat&lt;br /&gt;
* [[ArcGis]]&lt;br /&gt;
* [[Avaya]]&lt;br /&gt;
* [[Entrust tout|Entrust]]&lt;br /&gt;
* [[Microsoft Office]]&lt;br /&gt;
* [[OneDrive | OneDrive]]&lt;br /&gt;
* [[SAFI]]&lt;br /&gt;
* [[VPN]]&lt;br /&gt;
* [[Windows 10]]&lt;br /&gt;
* [[XMind]]&lt;br /&gt;
&lt;br /&gt;
== Type d&#039;ordinateurs ==&lt;br /&gt;
*[[Dell]]&lt;br /&gt;
*[[Postes Géomatiques]]&lt;br /&gt;
*[[Téléphones intelligents]]&lt;br /&gt;
&lt;br /&gt;
== Les Incidents les plus courants ==&lt;br /&gt;
* Ordinateurs&lt;br /&gt;
* [[Réseaux internes]] (Ministère)&lt;br /&gt;
* [[Réseaux Sans-fil]]&lt;br /&gt;
* [[Virus]]&lt;br /&gt;
&lt;br /&gt;
== Les partenaires d&#039;affaires ==&lt;br /&gt;
* [[Les Appels de services]]&lt;br /&gt;
* [[Les coordonnateurs régionaux]]&lt;br /&gt;
&lt;br /&gt;
== Formations ==&lt;br /&gt;
* [[Outils de formations]]&lt;br /&gt;
&lt;br /&gt;
== Divers ==&lt;br /&gt;
* [[Installer Android sur PC]]&lt;br /&gt;
* Formation Debian GNU/Linux [[http://linux.bouzzi.com HTML]] - [[http://linux.bouzzi.com/fichiers/FormationLinux.pdf PDF]]&lt;br /&gt;
* [[Commandes Linux]]&lt;br /&gt;
* [[Commandes CMD]]&lt;br /&gt;
* [[Tweak Windows 11]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Le_petit_sac_est_ouvert_mais_invisible&amp;diff=435</id>
		<title>Le petit sac est ouvert mais invisible</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Le_petit_sac_est_ouvert_mais_invisible&amp;diff=435"/>
		<updated>2025-04-03T12:05:44Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Dans la session de l&#039;utilisateur:&lt;br /&gt;
&lt;br /&gt;
Aller à la base de registre: &lt;br /&gt;
 HKEY_USERS\S-1-5-21-(...)\SOFTWARE\VB and VBA Program Settings\ParfaitSAC\Position  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changer le principal x et y pour 0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Si la clé de registre n&#039;existe pas...&lt;br /&gt;
&lt;br /&gt;
Il faut quitter Le Parfait petit sac par la barre de tâche (Important)...&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Quit PetitSAC.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Alors, la clé de registre s&#039;affichera.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
Retour au [[Le Parfait petit sac|Petit sac]] &amp;lt;- [[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Show_Classic_Mode_win10&amp;diff=434</id>
		<title>Show Classic Mode win10</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Show_Classic_Mode_win10&amp;diff=434"/>
		<updated>2024-12-10T18:15:24Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : Page créée avec « #Click on the search icon in the taskbar or press Windows + S to open the Windows search pane. #Type regedit and press Enter to open Registry Editor. #Go to this path:    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced. #Right click on Advanced in the left pane or right click on the blank area in the right pane. #Choose New -&amp;gt; DWORD (32-bit) Value. And then name it as Start_ShowClassicMode. #Double click on this value you created to... »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Click on the search icon in the taskbar or press Windows + S to open the Windows search pane.&lt;br /&gt;
#Type regedit and press Enter to open Registry Editor.&lt;br /&gt;
#Go to this path: &lt;br /&gt;
  HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced.&lt;br /&gt;
#Right click on Advanced in the left pane or right click on the blank area in the right pane.&lt;br /&gt;
#Choose New -&amp;gt; DWORD (32-bit) Value. And then name it as Start_ShowClassicMode.&lt;br /&gt;
#Double click on this value you created to open it. Then, change the Value data to 1 and click OK.&lt;br /&gt;
#Restart your computer.&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Tweak_Windows_11&amp;diff=433</id>
		<title>Tweak Windows 11</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Tweak_Windows_11&amp;diff=433"/>
		<updated>2024-12-10T18:13:38Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : Page créée avec « Show Classic Mode win10 »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Show Classic Mode win10]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=432</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=432"/>
		<updated>2024-12-10T18:12:17Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Divers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Wiki du sac&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les outils de travail ==&lt;br /&gt;
&lt;br /&gt;
* [[Le centre logiciel | Le centre logiciel]] (SCCM)&lt;br /&gt;
* [[Le Parfait petit sac | Le Parfait petit sac]]&lt;br /&gt;
* [[Active Directory | L&#039;Active Directory]]&lt;br /&gt;
* PowerShell&lt;br /&gt;
* C2 Atom&lt;br /&gt;
* [[Gestion des licences]]&lt;br /&gt;
* [[Comptes Inter-domaine]]&lt;br /&gt;
&lt;br /&gt;
== Les logiciels ==&lt;br /&gt;
* Adobe Acrobat&lt;br /&gt;
* [[ArcGis]]&lt;br /&gt;
* [[Avaya]]&lt;br /&gt;
* [[Entrust tout|Entrust]]&lt;br /&gt;
* [[Microsoft Office]]&lt;br /&gt;
* [[OneDrive | OneDrive]]&lt;br /&gt;
* [[SAFI]]&lt;br /&gt;
* [[VPN]]&lt;br /&gt;
* [[Windows 10]]&lt;br /&gt;
* [[XMind]]&lt;br /&gt;
&lt;br /&gt;
== Type d&#039;ordinateurs ==&lt;br /&gt;
*[[Dell]]&lt;br /&gt;
*[[Postes Géomatiques]]&lt;br /&gt;
*[[Téléphones intelligents]]&lt;br /&gt;
&lt;br /&gt;
== Les Incidents les plus courants ==&lt;br /&gt;
* Ordinateurs&lt;br /&gt;
* Réseaux internes (Ministère)&lt;br /&gt;
* [[Réseaux Sans-fil]]&lt;br /&gt;
* [[Virus]]&lt;br /&gt;
&lt;br /&gt;
== Les partenaires d&#039;affaires ==&lt;br /&gt;
* [[Les Appels de services]]&lt;br /&gt;
* [[Les coordonnateurs régionaux]]&lt;br /&gt;
&lt;br /&gt;
== Formations ==&lt;br /&gt;
* [[Outils de formations]]&lt;br /&gt;
&lt;br /&gt;
== Divers ==&lt;br /&gt;
* [[Installer Android sur PC]]&lt;br /&gt;
* Formation Debian GNU/Linux [[http://linux.bouzzi.com HTML]] - [[http://linux.bouzzi.com/fichiers/FormationLinux.pdf PDF]]&lt;br /&gt;
* [[Commandes Linux]]&lt;br /&gt;
* [[Commandes CMD]]&lt;br /&gt;
* [[Tweak Windows 11]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=431</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=431"/>
		<updated>2024-11-27T20:10:47Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Divers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Wiki du sac&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les outils de travail ==&lt;br /&gt;
&lt;br /&gt;
* [[Le centre logiciel | Le centre logiciel]] (SCCM)&lt;br /&gt;
* [[Le Parfait petit sac | Le Parfait petit sac]]&lt;br /&gt;
* [[Active Directory | L&#039;Active Directory]]&lt;br /&gt;
* PowerShell&lt;br /&gt;
* C2 Atom&lt;br /&gt;
* [[Gestion des licences]]&lt;br /&gt;
* [[Comptes Inter-domaine]]&lt;br /&gt;
&lt;br /&gt;
== Les logiciels ==&lt;br /&gt;
* Adobe Acrobat&lt;br /&gt;
* [[ArcGis]]&lt;br /&gt;
* [[Avaya]]&lt;br /&gt;
* [[Entrust tout|Entrust]]&lt;br /&gt;
* [[Microsoft Office]]&lt;br /&gt;
* [[OneDrive | OneDrive]]&lt;br /&gt;
* [[SAFI]]&lt;br /&gt;
* [[VPN]]&lt;br /&gt;
* [[Windows 10]]&lt;br /&gt;
* [[XMind]]&lt;br /&gt;
&lt;br /&gt;
== Type d&#039;ordinateurs ==&lt;br /&gt;
*[[Dell]]&lt;br /&gt;
*[[Postes Géomatiques]]&lt;br /&gt;
*[[Téléphones intelligents]]&lt;br /&gt;
&lt;br /&gt;
== Les Incidents les plus courants ==&lt;br /&gt;
* Ordinateurs&lt;br /&gt;
* Réseaux internes (Ministère)&lt;br /&gt;
* [[Réseaux Sans-fil]]&lt;br /&gt;
* [[Virus]]&lt;br /&gt;
&lt;br /&gt;
== Les partenaires d&#039;affaires ==&lt;br /&gt;
* [[Les Appels de services]]&lt;br /&gt;
* [[Les coordonnateurs régionaux]]&lt;br /&gt;
&lt;br /&gt;
== Formations ==&lt;br /&gt;
* [[Outils de formations]]&lt;br /&gt;
&lt;br /&gt;
== Divers ==&lt;br /&gt;
* [[Installer Android sur PC]]&lt;br /&gt;
* Formation Debian GNU/Linux [[http://linux.bouzzi.com HTML]] - [[http://linux.bouzzi.com/fichiers/FormationLinux.pdf PDF]]&lt;br /&gt;
* [[Commandes Linux]]&lt;br /&gt;
* [[Commandes CMD]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstallations_de_logiciels&amp;diff=430</id>
		<title>Désinstallations de logiciels</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=D%C3%A9sinstallations_de_logiciels&amp;diff=430"/>
		<updated>2024-11-13T16:33:54Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : Page créée avec « Pour réussir à désinstaller un logiciel SCCM on peut changer certaines valeurs dans la base de registre...  ex.:   HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall  vignette »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pour réussir à désinstaller un logiciel SCCM on peut changer certaines valeurs dans la base de registre...&lt;br /&gt;
&lt;br /&gt;
ex.:&lt;br /&gt;
&lt;br /&gt;
 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Regedit uninstall.png|vignette]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Fichier:Regedit_uninstall.png&amp;diff=429</id>
		<title>Fichier:Regedit uninstall.png</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Fichier:Regedit_uninstall.png&amp;diff=429"/>
		<updated>2024-11-13T16:33:01Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Regedit uninstall Oracle&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Le_centre_logiciel&amp;diff=428</id>
		<title>Le centre logiciel</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Le_centre_logiciel&amp;diff=428"/>
		<updated>2024-11-13T16:28:49Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* SCCM&lt;br /&gt;
* Installations de logiciels&lt;br /&gt;
* [[Installations sccm en échecs| Installations en échec]]&lt;br /&gt;
* [[Désinstallations de logiciels| Désinstallations]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=427</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=427"/>
		<updated>2024-11-12T02:49:36Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Divers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Wiki du sac&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les outils de travail ==&lt;br /&gt;
&lt;br /&gt;
* [[Le centre logiciel | Le centre logiciel]] (SCCM)&lt;br /&gt;
* [[Le Parfait petit sac | Le Parfait petit sac]]&lt;br /&gt;
* [[Active Directory | L&#039;Active Directory]]&lt;br /&gt;
* PowerShell&lt;br /&gt;
* C2 Atom&lt;br /&gt;
* [[Gestion des licences]]&lt;br /&gt;
* [[Comptes Inter-domaine]]&lt;br /&gt;
&lt;br /&gt;
== Les logiciels ==&lt;br /&gt;
* Adobe Acrobat&lt;br /&gt;
* [[ArcGis]]&lt;br /&gt;
* [[Avaya]]&lt;br /&gt;
* [[Entrust tout|Entrust]]&lt;br /&gt;
* [[Microsoft Office]]&lt;br /&gt;
* [[OneDrive | OneDrive]]&lt;br /&gt;
* [[SAFI]]&lt;br /&gt;
* [[VPN]]&lt;br /&gt;
* [[Windows 10]]&lt;br /&gt;
* [[XMind]]&lt;br /&gt;
&lt;br /&gt;
== Type d&#039;ordinateurs ==&lt;br /&gt;
*[[Dell]]&lt;br /&gt;
*[[Postes Géomatiques]]&lt;br /&gt;
*[[Téléphones intelligents]]&lt;br /&gt;
&lt;br /&gt;
== Les Incidents les plus courants ==&lt;br /&gt;
* Ordinateurs&lt;br /&gt;
* Réseaux internes (Ministère)&lt;br /&gt;
* [[Réseaux Sans-fil]]&lt;br /&gt;
* [[Virus]]&lt;br /&gt;
&lt;br /&gt;
== Les partenaires d&#039;affaires ==&lt;br /&gt;
* [[Les Appels de services]]&lt;br /&gt;
* [[Les coordonnateurs régionaux]]&lt;br /&gt;
&lt;br /&gt;
== Formations ==&lt;br /&gt;
* [[Outils de formations]]&lt;br /&gt;
&lt;br /&gt;
== Divers ==&lt;br /&gt;
* [[Installer Android sur PC]]&lt;br /&gt;
* Formation Debian GNU/Linux [[http://linux.bouzzi.com HTML]] - [[http://linux.bouzzi.com/fichiers/FormationLinux.pdf PDF]]&lt;br /&gt;
* [[Commandes Linux]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Resynchronisation_de_OneNote&amp;diff=426</id>
		<title>Resynchronisation de OneNote</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Resynchronisation_de_OneNote&amp;diff=426"/>
		<updated>2024-08-15T15:07:56Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Procédure de resynchronisation de OneNote&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cette procédure doit être utilisée pour resynchroniser OneNote lorsqu’un message de désynchronisation apparait dans le haut de l’application ou lorsqu’un message d’erreur de « Tenant ID » apparait. Cette procédure doit être réalisée dans le compte de l’utilisateur en problème avec l’aide d’un technicien informatique.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|1&lt;br /&gt;
|Créer un répertoire de backup sur le poste  où l’utilisateur est en mesure d’écrire (exemple « C:\Temp\OneNote  BackUp »).&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|2&lt;br /&gt;
|Ouvrir OneNote et faire l’inventaire des  blocs-notes existants. Identifier quelle version du bloc-notes est plus  récente, locale ou celle sauvegardée dans le cloud.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Lors de l’importation des données à nouveau,  choisir la bonne version.&lt;br /&gt;
|Si le bloc note est partagé avec  l’utilisateur, il faut récupérer le courriel de partage dans Outlook et  s’assurer que lien pointe toujours vers le bloc-notes. S’il ne l’est plus,  probablement parce que son propriétaire a été migré vers une adresse MRNF, il  faudra donc changer l’UPN et sauvegarder le lien texte dans un fichier  temporaire dans le répertoire de backup.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Image.png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|3&lt;br /&gt;
|Sélectionner le premier bloc-notes.&lt;br /&gt;
|&lt;br /&gt;
[[Fichier:Premier bloc-note.png|140px]]&lt;br /&gt;
|-&lt;br /&gt;
|4&lt;br /&gt;
|Exporter le package de OneNote vers le  répertoire de backup (sélectionner le bloc-notes entier et non pas une page  ou une section).&lt;br /&gt;
|[[Fichier:Exporter le package de OneNote .png|500x500px]]&lt;br /&gt;
|-&lt;br /&gt;
|5&lt;br /&gt;
|Enregistrer le package OneNote.&lt;br /&gt;
Dans le répertoire C:\Temp\OneNote BackUp &lt;br /&gt;
|[[Fichier:Enregistrer le package OneNote.png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|6&lt;br /&gt;
|S’assurer que le fichier est bien créé.&lt;br /&gt;
|[[Fichier:Le fichier est bien créé..png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|7&lt;br /&gt;
| Répéter la même opération pour les autres  blocs-notes existants.&lt;br /&gt;
|[[Fichier:Même opération pour les autres blocs-notes existants..png|300x300px]]&lt;br /&gt;
|-&lt;br /&gt;
| 8&lt;br /&gt;
| Cliquer avec le bouton droit de la souris  sur le bloc-notes récemment exporté et choisir « Fermer ce  bloc-notes ».&lt;br /&gt;
|[[Fichier:Fermer ce bloc-note.png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|9&lt;br /&gt;
|Fermer tous les blocs-notes dans OneNote.  S’il reste des onglets nomades, les supprimer. &lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|10&lt;br /&gt;
|Déconnecter le compte cloud utilisateur. &lt;br /&gt;
|[[Fichier:Déconnecter le compte cloud .png|438x438px]][[Fichier:Compte cloud utilisateur..png|300x300px]][[Fichier:Compte cloud .png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|11 &lt;br /&gt;
|Déconnecter le compte cloud de l’utilisateur  dans Office 365 App. Il faut le faire dans Word ou Excel &#039;&#039;&#039;et&#039;&#039;&#039; OneNote.&lt;br /&gt;
|[[Fichier:Compte Office 365.png|300x300px]]&lt;br /&gt;
|-&lt;br /&gt;
|12 &lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |Fermer toutes les applications Office 365  sauf Teams.&lt;br /&gt;
|-&lt;br /&gt;
| 13&lt;br /&gt;
|Naviguer et supprimer tous les fichiers dans  cet emplacement.&lt;br /&gt;
|&lt;br /&gt;
 &amp;lt;small&amp;gt;C:\Users&#039;&#039;&#039;{usager}&#039;&#039;&#039;\AppData\Local\Packages\Microsoft.AAD.BrokerPlugin_cw5n1h2txyewy\AC\TokenBroker\Accounts&amp;lt;/small&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|14&lt;br /&gt;
|Renommer le fichier &#039;&#039;&#039;settings.dat&#039;&#039;&#039; en &#039;&#039;&#039;settings.dat.Old&#039;&#039;&#039; dans cet  emplacement.&lt;br /&gt;
|[[Fichier:Renommer le fichier settings.dat .png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|15&lt;br /&gt;
|Renommer le répertoire &#039;&#039;&#039;DefaultAccount&#039;&#039;&#039;  en &#039;&#039;&#039;DefaultAccoun&#039;&#039;&#039;t&#039;&#039;&#039;_BackUp&#039;&#039;&#039;  dans le registre dans cet emplacement.&lt;br /&gt;
|[[Fichier:Renommer le répertoire DefaultAccount .png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|16&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |Redémarrer  l’ordinateur.&lt;br /&gt;
|-&lt;br /&gt;
| 17&lt;br /&gt;
|Reconnecter le compte cloud de l’utilisateur  dans Office 365.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
S’assurer que le compte est bien identifié  (Word, Excel, OneNote) et que l’image du profil est bien affichée.&lt;br /&gt;
|[[Fichier:Reconnecter le compte cloud.png|300x300px]]&lt;br /&gt;
|-&lt;br /&gt;
|18&lt;br /&gt;
|S’assurer le compte de l’utilisateur est  identique dans les deux emplacements dans les produits Office 365.&lt;br /&gt;
|[[Fichier:Synchronise bien avec le bon compte cloud .png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|19&lt;br /&gt;
|Dans les paramètres de OneDrive, s’assurer  qu’il synchronise bien avec le bon compte cloud de l’utilisateur.&lt;br /&gt;
|[[Fichier:Paramètres de OneDrive.png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
| 20&lt;br /&gt;
| Si OneDrive n’affiche pas le bon compte ou s’il  a problème de synchronisation : &lt;br /&gt;
|Il faut réinitialiser OneDrive avec cette  commande :&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Eventuellement, utiliser cette procédure :  Initialisation OneDrive.&lt;br /&gt;
|-&lt;br /&gt;
|21 &lt;br /&gt;
|Si OneDrive n’arrive toujours pas à  synchroniser :&lt;br /&gt;
|Il faut supprimer le  fichier suivant &#039;&#039;&#039;PreSignInSettingsConfig.json  a cet emplacement&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;%localappdata%\Microsoft\OneDrive\settings&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|22 &lt;br /&gt;
| Créer un répertoire « OLD » à cet  emplacement :&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OneDrive - BuroVirtuel\Documents\Blocs-notes  OneNote&lt;br /&gt;
|[[Fichier:Créer un répertoire « OLD » .png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|23&lt;br /&gt;
|Déplacer tous les liens des anciens  blocs-notes dans le répertoire « OLD ».&lt;br /&gt;
|[[Fichier:Déplacer tous les liens .png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|24 &lt;br /&gt;
|S’assurer que les changements sont bien  synchronisés dans OneDrive.&lt;br /&gt;
|[[Fichier:Synchronisés dans OneDrive..png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
| 25&lt;br /&gt;
|Ouvrir OneNote et commencer à importer les  blocs-notes de l’utilisateur qui avaient été exportés aux étapes #4 et #5.&lt;br /&gt;
|[[Fichier:Importer les blocs-notes .png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
| 26&lt;br /&gt;
|S’assurer de l’emplacement final du  bloc-notes et cliquer sur « Créer ».&lt;br /&gt;
|[[Fichier:L’emplacement final du bloc-notes.png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|27&lt;br /&gt;
|Attendre la fin du chargement.&lt;br /&gt;
&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|28&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |Il se  peut que lors de l’opération de chargement, OneNote se ferme subitement. Il  suffit de l’ouvrir à nouveau et continuer.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Parfois  un message d’erreur s’affiche, il faut choisir l’option démarrer normalement.&lt;br /&gt;
|-&lt;br /&gt;
|29&lt;br /&gt;
|Essayer de synchroniser le bloc-notes. &lt;br /&gt;
|[[Fichier:Synchroniser .png|300x300px]]&lt;br /&gt;
|-&lt;br /&gt;
|30&lt;br /&gt;
|Vérifier l’état de la synchronisation.&lt;br /&gt;
|[[Fichier:Vérifier l’état de la synchronisation.png|300x300px]][[Fichier:Synchronisation.png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|31&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |Répéter  la même opération pour les autres blocs-notes.&lt;br /&gt;
|-&lt;br /&gt;
| 32&lt;br /&gt;
|Pour les blocs-notes partagés avec  l’utilisateur, il faut ouvrir le lien à partir d’Outlook dans le navigateur  puis choisir l’option ouvrir dans l’application du bureau.&lt;br /&gt;
|[[Fichier:Blocs-notes partagés .png|300x300px]][[Fichier:D’Outlook dans le navigateur .png|300x300px]]&lt;br /&gt;
|-&lt;br /&gt;
| 33&lt;br /&gt;
|Il se peut que, dans (OneNote, Word, Excel,  etc.) après chargement du bloc-notes l’affichage du propriétaire n’est pas  correct.&lt;br /&gt;
|[[Fichier:L’affichage du propriétaire.png|400x400px]][[Fichier:Affichage.png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|34&lt;br /&gt;
| Dans ce cas, il faut fermer toutes les  applications Office, Teams peut rester ouvert.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Puis naviguer à cet emplacement :&lt;br /&gt;
|[[Fichier:Naviguer à cet emplacement .png|400x400px]]&lt;br /&gt;
|-&lt;br /&gt;
|35 &lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; |Renommer tous les fichiers  (UrlFriendlyPathMapping.json, UrlFriendlyPathMapping2.json,  UrlFriendlyPathMapping3.json, etc.) avec l’extension .json.old&lt;br /&gt;
&lt;br /&gt;
puis ouvrir OneNote ou Word.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
L’erreur d’affichage devrait être corrigée.&lt;br /&gt;
|-&lt;br /&gt;
|36&lt;br /&gt;
|OneNote devrait fonctionner normalement.&lt;br /&gt;
|[[Fichier:OneNote devrait fonctionner normalement..png|400x400px]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Retour à [[Microsoft Office]] - [[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=425</id>
		<title>Microsoft Office</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=425"/>
		<updated>2024-08-15T15:06:42Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* OneNote */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Incidents reliés aux produits Microsoft 365 ==&lt;br /&gt;
=== Généralités ===&lt;br /&gt;
*[[Associations de fichiers Office]]&lt;br /&gt;
*[[Réactiver licence Office ]]&lt;br /&gt;
*[[Outil diagnostique Office 365 (SaRA)]]&lt;br /&gt;
*[[Compte Microsoft Office inactif]]&lt;br /&gt;
&lt;br /&gt;
=== Word ===&lt;br /&gt;
=== Excel ===&lt;br /&gt;
=== OneNote ===&lt;br /&gt;
*  [[Resynchronisation de OneNote]]&lt;br /&gt;
&lt;br /&gt;
=== Outlook ===&lt;br /&gt;
*[[Nombre maximal de comptes Outlook ]](Microsoft Exchange)&lt;br /&gt;
*[[Statut de présence dans Outlook]]&lt;br /&gt;
*[[Activation du plugin &amp;quot;Réunion Teams&amp;quot;]] dans Outlook&lt;br /&gt;
*[[Configuration d&#039;Outlook pour iphone ]]&lt;br /&gt;
*[[Erreur du chargement du profil Outlook]]&lt;br /&gt;
&lt;br /&gt;
===Autres===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Retour à l&#039;[[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=424</id>
		<title>Microsoft Office</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=424"/>
		<updated>2024-08-15T15:05:05Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* OneNote */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Incidents reliés aux produits Microsoft 365 ==&lt;br /&gt;
=== Généralités ===&lt;br /&gt;
*[[Associations de fichiers Office]]&lt;br /&gt;
*[[Réactiver licence Office ]]&lt;br /&gt;
*[[Outil diagnostique Office 365 (SaRA)]]&lt;br /&gt;
*[[Compte Microsoft Office inactif]]&lt;br /&gt;
&lt;br /&gt;
=== Word ===&lt;br /&gt;
=== Excel ===&lt;br /&gt;
=== OneNote ===&lt;br /&gt;
* [[Procédure de resynchronisation de OneNote|Resynchronisation de OneNote]]&lt;br /&gt;
&lt;br /&gt;
=== Outlook ===&lt;br /&gt;
*[[Nombre maximal de comptes Outlook ]](Microsoft Exchange)&lt;br /&gt;
*[[Statut de présence dans Outlook]]&lt;br /&gt;
*[[Activation du plugin &amp;quot;Réunion Teams&amp;quot;]] dans Outlook&lt;br /&gt;
*[[Configuration d&#039;Outlook pour iphone ]]&lt;br /&gt;
*[[Erreur du chargement du profil Outlook]]&lt;br /&gt;
&lt;br /&gt;
===Autres===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Retour à l&#039;[[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=423</id>
		<title>Microsoft Office</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=423"/>
		<updated>2024-08-15T15:04:38Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* OneNote */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Incidents reliés aux produits Microsoft 365 ==&lt;br /&gt;
=== Généralités ===&lt;br /&gt;
*[[Associations de fichiers Office]]&lt;br /&gt;
*[[Réactiver licence Office ]]&lt;br /&gt;
*[[Outil diagnostique Office 365 (SaRA)]]&lt;br /&gt;
*[[Compte Microsoft Office inactif]]&lt;br /&gt;
&lt;br /&gt;
=== Word ===&lt;br /&gt;
=== Excel ===&lt;br /&gt;
=== OneNote ===&lt;br /&gt;
* [[Procédure de resynchronisation de OneNote|Resynchronisation_de_OneNote]]&lt;br /&gt;
&lt;br /&gt;
=== Outlook ===&lt;br /&gt;
*[[Nombre maximal de comptes Outlook ]](Microsoft Exchange)&lt;br /&gt;
*[[Statut de présence dans Outlook]]&lt;br /&gt;
*[[Activation du plugin &amp;quot;Réunion Teams&amp;quot;]] dans Outlook&lt;br /&gt;
*[[Configuration d&#039;Outlook pour iphone ]]&lt;br /&gt;
*[[Erreur du chargement du profil Outlook]]&lt;br /&gt;
&lt;br /&gt;
===Autres===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Retour à l&#039;[[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=422</id>
		<title>Accueil</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Accueil&amp;diff=422"/>
		<updated>2024-08-15T15:04:19Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* Les logiciels */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;strong&amp;gt;Wiki du sac&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les outils de travail ==&lt;br /&gt;
&lt;br /&gt;
* [[Le centre logiciel | Le centre logiciel]] (SCCM)&lt;br /&gt;
* [[Le Parfait petit sac | Le Parfait petit sac]]&lt;br /&gt;
* [[Active Directory | L&#039;Active Directory]]&lt;br /&gt;
* PowerShell&lt;br /&gt;
* C2 Atom&lt;br /&gt;
* [[Gestion des licences]]&lt;br /&gt;
* [[Comptes Inter-domaine]]&lt;br /&gt;
&lt;br /&gt;
== Les logiciels ==&lt;br /&gt;
* Adobe Acrobat&lt;br /&gt;
* [[ArcGis]]&lt;br /&gt;
* [[Avaya]]&lt;br /&gt;
* [[Entrust tout|Entrust]]&lt;br /&gt;
* [[Microsoft Office]]&lt;br /&gt;
* [[OneDrive | OneDrive]]&lt;br /&gt;
* [[SAFI]]&lt;br /&gt;
* [[VPN]]&lt;br /&gt;
* [[Windows 10]]&lt;br /&gt;
* [[XMind]]&lt;br /&gt;
&lt;br /&gt;
== Type d&#039;ordinateurs ==&lt;br /&gt;
*[[Dell]]&lt;br /&gt;
*[[Postes Géomatiques]]&lt;br /&gt;
*[[Téléphones intelligents]]&lt;br /&gt;
&lt;br /&gt;
== Les Incidents les plus courants ==&lt;br /&gt;
* Ordinateurs&lt;br /&gt;
* Réseaux internes (Ministère)&lt;br /&gt;
* [[Réseaux Sans-fil]]&lt;br /&gt;
* [[Virus]]&lt;br /&gt;
&lt;br /&gt;
== Les partenaires d&#039;affaires ==&lt;br /&gt;
* [[Les Appels de services]]&lt;br /&gt;
* [[Les coordonnateurs régionaux]]&lt;br /&gt;
&lt;br /&gt;
== Formations ==&lt;br /&gt;
* [[Outils de formations]]&lt;br /&gt;
&lt;br /&gt;
== Divers ==&lt;br /&gt;
* [[Installer Android sur PC]]&lt;br /&gt;
* Formation Debian GNU/Linux [[https://linux.developpez.com/formation_debian/formation-linux.html HTML]] - [[http://linux.bouzzi.com/fichiers/FormationLinux.pdf PDF]]&lt;br /&gt;
* [[Commandes Linux]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Fichier:Cr%C3%A9er_un_repertoire_c--temp.png&amp;diff=421</id>
		<title>Fichier:Créer un repertoire c--temp.png</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Fichier:Cr%C3%A9er_un_repertoire_c--temp.png&amp;diff=421"/>
		<updated>2024-08-15T14:58:41Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;créer un repertoire c:\temp&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Proc%C3%A9dure_de_resynchronisation_de_OneNote&amp;diff=420</id>
		<title>Procédure de resynchronisation de OneNote</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Proc%C3%A9dure_de_resynchronisation_de_OneNote&amp;diff=420"/>
		<updated>2024-08-15T14:53:14Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : Page créée avec «        ----   Retour à Microsoft Office - Accueil »&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Retour à [[Microsoft Office]] - [[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=419</id>
		<title>Microsoft Office</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=419"/>
		<updated>2024-08-15T14:52:04Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : /* OneNote */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Incidents reliés aux produits Microsoft 365 ==&lt;br /&gt;
=== Généralités ===&lt;br /&gt;
*[[Associations de fichiers Office]]&lt;br /&gt;
*[[Réactiver licence Office ]]&lt;br /&gt;
*[[Outil diagnostique Office 365 (SaRA)]]&lt;br /&gt;
*[[Compte Microsoft Office inactif]]&lt;br /&gt;
&lt;br /&gt;
=== Word ===&lt;br /&gt;
=== Excel ===&lt;br /&gt;
=== OneNote ===&lt;br /&gt;
* [[Procédure de resynchronisation de OneNote]]&lt;br /&gt;
&lt;br /&gt;
=== Outlook ===&lt;br /&gt;
*[[Nombre maximal de comptes Outlook ]](Microsoft Exchange)&lt;br /&gt;
*[[Statut de présence dans Outlook]]&lt;br /&gt;
*[[Activation du plugin &amp;quot;Réunion Teams&amp;quot;]] dans Outlook&lt;br /&gt;
*[[Configuration d&#039;Outlook pour iphone ]]&lt;br /&gt;
*[[Erreur du chargement du profil Outlook]]&lt;br /&gt;
&lt;br /&gt;
===Autres===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Retour à l&#039;[[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=418</id>
		<title>Microsoft Office</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Microsoft_Office&amp;diff=418"/>
		<updated>2024-08-15T14:46:37Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Incidents reliés aux produits Microsoft 365 ==&lt;br /&gt;
=== Généralités ===&lt;br /&gt;
*[[Associations de fichiers Office]]&lt;br /&gt;
*[[Réactiver licence Office ]]&lt;br /&gt;
*[[Outil diagnostique Office 365 (SaRA)]]&lt;br /&gt;
*[[Compte Microsoft Office inactif]]&lt;br /&gt;
&lt;br /&gt;
=== Word ===&lt;br /&gt;
=== Excel ===&lt;br /&gt;
=== OneNote ===&lt;br /&gt;
=== Outlook ===&lt;br /&gt;
*[[Nombre maximal de comptes Outlook ]](Microsoft Exchange)&lt;br /&gt;
*[[Statut de présence dans Outlook]]&lt;br /&gt;
*[[Activation du plugin &amp;quot;Réunion Teams&amp;quot;]] dans Outlook&lt;br /&gt;
*[[Configuration d&#039;Outlook pour iphone ]]&lt;br /&gt;
*[[Erreur du chargement du profil Outlook]]&lt;br /&gt;
&lt;br /&gt;
===Autres===&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Retour à l&#039;[[Accueil]]&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Je_suis_INTRANET,_je_veux_acc%C3%A9der_un_ordinateur_FONCIERQC&amp;diff=417</id>
		<title>Je suis INTRANET, je veux accéder un ordinateur FONCIERQC</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Je_suis_INTRANET,_je_veux_acc%C3%A9der_un_ordinateur_FONCIERQC&amp;diff=417"/>
		<updated>2024-08-08T21:29:57Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Pour un meilleur résultat ouvrir le navigateur &#039;&#039;&#039;Microsoft Edge&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Microsoft Edge logo (2019).png|59x59px]]&lt;br /&gt;
&lt;br /&gt;
Dans la barre d&#039;adresse inscrire l&#039;adresse suivante:&lt;br /&gt;
&lt;br /&gt;
https://teleacces-st.mern.gouv.qc.ca/&lt;br /&gt;
&lt;br /&gt;
[[Fichier:CompteIntanet1.png|500x500px]]&lt;br /&gt;
&lt;br /&gt;
Si c&#039;est la première fois... &lt;br /&gt;
&lt;br /&gt;
Utiliser le bouton &#039;&#039;&#039;Avancé&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Un autre message devrait apparaitre..&lt;br /&gt;
&lt;br /&gt;
Utiliser le lien &#039;&#039;&#039;&amp;lt;u&amp;gt;Continuer vers teleacces-st.mern.gouv.qc.ca (non sécurisé)&amp;lt;/u&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:CompteIntanet3.png|500x500px]]&lt;br /&gt;
&lt;br /&gt;
Utiliser le bouton &#039;&#039;&#039;Poursuivre&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:CompteIntanet5.png|500x500px]]&lt;br /&gt;
&lt;br /&gt;
Si c&#039;est la première fois, il faut &#039;&#039;&#039;Télécharger&#039;&#039;&#039; le lanceur de l&#039;appication.&lt;br /&gt;
&lt;br /&gt;
Utiliser le bouton &#039;&#039;&#039;Télécharger&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:CompteIntanet4.png|300x300px]] &lt;br /&gt;
&lt;br /&gt;
Une fois téléchargé, installer le lanceur, &lt;br /&gt;
&lt;br /&gt;
Utiliser le lien &#039;&#039;&#039;Ouvrir le fichier&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Une fois installé...&lt;br /&gt;
&lt;br /&gt;
[[Fichier:ComptesInterdomF6.png|300x300px]]&lt;br /&gt;
&lt;br /&gt;
Utiliser le bouton &#039;&#039;&#039;OK&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:ComptesInterdomF7.png|400x400px]]&lt;br /&gt;
&lt;br /&gt;
Utiliser le lien &amp;lt;u&amp;gt;&#039;&#039;&#039;ICI&#039;&#039;&#039;&amp;lt;/u&amp;gt; pour procéder au lancement de l&#039;application...&lt;br /&gt;
&lt;br /&gt;
[[Fichier:ComptesInterdomaine.png|500x500px]]&lt;br /&gt;
&lt;br /&gt;
Si ce message s&#039;affiche, cocher la case &#039;&#039;&#039;Toujours autoriser teleacces-st.mern.gouv.qc.ca&#039;&#039;&#039; .....&lt;br /&gt;
&lt;br /&gt;
Utiliser le bouton &#039;&#039;&#039;Ouvrir&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:ComptesInterdomF9.png|300x300px]]&lt;br /&gt;
&lt;br /&gt;
Utiliser le bouton &#039;&#039;&#039;Toujours&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:CompteIntanet6.png|500x500px]]&lt;br /&gt;
&lt;br /&gt;
Utiliser votre compte du domaine Foncierqc accompagné de son mot de passe...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Choisissez le profil qui vous convient :&lt;br /&gt;
&lt;br /&gt;
1.    Profil – S         : pour le SIRF requiert un jeton RSA&lt;br /&gt;
&lt;br /&gt;
2.    Profil – D        : Environnement DGRF-DEV&lt;br /&gt;
&lt;br /&gt;
3.    Profil – F         : Foncierqc (le plus utilisé)&lt;br /&gt;
&lt;br /&gt;
4.    Profil – D(FQ) : On sais pas à quoi ça servirait de vous le dire?&lt;br /&gt;
&lt;br /&gt;
Utiliser le bouton &#039;&#039;&#039;Connectez-vous&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Bravo! vous avez réussi! &lt;br /&gt;
&lt;br /&gt;
Voici le résultat :&lt;br /&gt;
&lt;br /&gt;
[[Fichier:ComptesInterdomF11.png|500x500px]]&lt;br /&gt;
&lt;br /&gt;
Pour accéder à l&#039;ordinateur du domaine INTRANET,&lt;br /&gt;
&lt;br /&gt;
Utiliser la section &#039;&#039;&#039;Session de Terminal&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[Fichier:ComptesInterdomF12.png|400x400px]]&lt;br /&gt;
&lt;br /&gt;
Inscrire le nom de l&#039;ordinateur auquel vous avez accès dans le champs...&lt;br /&gt;
&lt;br /&gt;
Utiliser le bouton &#039;&#039;&#039;Lancer&#039;&#039;&#039;, pour y accéder.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
===Personaliser la section: Session de Terminal===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Dans la section &#039;&#039;&#039;Session de Terminal&#039;&#039;&#039;, vous pouvez ajouter un lien rapide vers un ordinateur utilisé souvent.&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Dans la section Session de Terminal.png|500x500px]]&lt;br /&gt;
&lt;br /&gt;
Utiliser l&#039;icone pour &#039;&#039;&#039;Ajouter une session terminal&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Pour un meilleur résultat, suivre les choix du formulaire ci-dessous:&lt;br /&gt;
&lt;br /&gt;
(Insrire le vrai nom réseau de votre Ordinateur, Serveur ou Machine Virtuelle)&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Formulaire.png|802x802px]]&lt;br /&gt;
&lt;br /&gt;
Lorsque c&#039;est terminé..&lt;br /&gt;
&lt;br /&gt;
Utiliser le bouton &#039;&#039;&#039;Ajouter.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
L&#039;ordinateur est prêt...&lt;br /&gt;
&lt;br /&gt;
[[Fichier:Personnaliser.png|500x500px]]&lt;br /&gt;
&lt;br /&gt;
----&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Fichier:CompteIntanet6.png&amp;diff=416</id>
		<title>Fichier:CompteIntanet6.png</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Fichier:CompteIntanet6.png&amp;diff=416"/>
		<updated>2024-08-08T21:28:26Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;CompteIntanet6&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Fichier:CompteIntanet4.png&amp;diff=415</id>
		<title>Fichier:CompteIntanet4.png</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Fichier:CompteIntanet4.png&amp;diff=415"/>
		<updated>2024-08-08T21:26:31Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;CompteIntanet4&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
	<entry>
		<id>https://sacawiki.3w-comm.com/index.php?title=Fichier:CompteIntanet5.png&amp;diff=414</id>
		<title>Fichier:CompteIntanet5.png</title>
		<link rel="alternate" type="text/html" href="https://sacawiki.3w-comm.com/index.php?title=Fichier:CompteIntanet5.png&amp;diff=414"/>
		<updated>2024-08-08T21:23:34Z</updated>

		<summary type="html">&lt;p&gt;Deslu2 : &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;CompteIntanet5&lt;/div&gt;</summary>
		<author><name>Deslu2</name></author>
	</entry>
</feed>