Top articles
-
[Veille Techno] Du nouveau dans le monde du VDi
La solution ndv® vous permet de déployer des milliers de postes de travail virtualisés, windows ou linux, en toute sécurité et en quelques minutes seulement ! Les utilisateurs retrouvent un PC neuf à chaque démarrage, tout en disposant du contenu adapté...
-
[PS1] Create Commands with functions and alias
si chemin contient ":" alors fonction suivante et que le chemin n'existe pas, on le crée et on attribut ce chemin à la viariable: If path contains ":" then next function and the path does not exist, we create it and we attribute this path to the variable:...
-
check if service is running ...
1) BATCH:check if service (param %1 of batch script) is running in windows: @echo offsc query type= service "%1" | findstr STATE | findstr RUNNING>NULif "%ERRORLEVEL%"=="0" goto activegoto inactive :inactiveecho service %1 is inactivegoto end :activeecho...
-
[VMWARE] [PowerCLI] Deploy VM and configure hard disk
$templateName = 'template' $esxName = 'esx' $clusterName = 'cluster' $dsName = ' dsName ' $template = Get-Template -Name $templateName $ds = Get-Datastore -Name $dsName $cluster = Get-Cluster -Name $clusterName $esx = Get-VMHost -Name $esxName $vm = New-VM...
-
[SQL 2012] install full update auto
1) download SQLServer2012SP1-FullSlipstream-ENU-x64.iso source from here: https://www.microsoft.com/en-US/download/details.aspx?id=35575 2) Create folder name "UPDATE" (
) in the source or in your network and Download all the needed... -
runas: command line
Lors de mes différentes péripécies il a toujours été prévu à travers les outils d’executer mes scripts en tant qu’administrateur local…. Mais… Aujourd’hui je travaille sur un outil arcaïque nommé LANDesk, qui je ne sais pas comment exactement (et puis...
-
[MDT 2013] Autodeploy & Configure Silently MDT 2013 Update 2
#usage:
[optional -sourcepath -
[sccm 2016] Silent Auto INSTALL OF SCCM2016 + MDT2013U2
param([Parameter(Mandatory=$false)][string]$FQDom = "LAB.local",[Parameter(Mandatory=$false)][string]$SCCMSRV = "SCCMSRV",[Parameter(Mandatory=$false)][string]$ConfigMgrSource = "C:\ConfigMgrSource",[Parameter(Mandatory=$false)][string]$SetupSQLFold =...
-
[SCRIPTING] Cheat: where am i?
if you want to use something in the folder of your script, but you don't know what will be the path of your script when it will be run, use: VBSCRIPT or VBA: here=left(WScript.ScriptFullName,len(WScript.ScriptFullName)-len(WScript.ScriptName)-1) & "\"this...
-
VDI SCCM duplicate GUID
Comment gérer des machines VDI à partir d’un master GOLD avec SCCM notamment pour y déployer des applications. En effet, il est intéressant de pouvoir gérer les VDI induis d’un master GOLD avec SCCM mais se pose alors un problème : le client à un GUID...
-
[Powershell] [Windows 10] Disable Action Center
# Run as administrator function DisableActionCenter{ param($Hive) Write-Host "Disabling Action Center..." If (!(Test-Path "$Hive\Software\Policies\Microsoft\Windows\CurrentVersion\PushNotifications")) {New-Item -Path "$Hive\Software\Policies\Microsoft\Windows\CurrentVersion\PushNotifications"...
-
[W7] [explorer] Impossible de supprimer un répertoire.
Le plus souvent c'est parce qu'il y a un espace à la fin du nom du répertoire...: Ouvrir le menu démarrer > tous les programmes > accessoires > [Clic Droit] sur "Invite de commande" + "exécuter en tant qu'administrateur" Dans la fenêtre cmd, écrire: rmdir...
-
[webservices] [mdt] [sql 2012 R2] web service sql server 2012 [powershell] MDT
une procédure pour créer un web deploy setup:https://docs.microsoft.com/en-us/iis/publish/using-web-deploy/powershell-scripts-for-automating-web-deploy-setup permet de créer une database dédiée reste à trouver un script pour interroger la base sql depuis...
-
[BDD] [MDT] deploy softs
#idée: créer une base de données des logiciels à installer sur les postes avec MDT#puis installer les applications à la suite avec un seul script powershell: $collections =
table liste des collections>$collection = -
[WEBSERVICES] [Powershell] Interroger une base de donnée en powershell via webservices (besoin d'aide)
Je crée une base de donnée (nommé PARC) avec des informations dans des tables concernant des PC.par exemple, les applications présentes sur les PC (tables nommée Apps) Puis, je publie en webservices cette base de donnée sur mon réseau interne (https://technet.microsoft.com/fr-fr/library/ee210545(v=sql.105).aspx)...
-
[SCCM 2012 R2] – Déployer le [portail] d’entreprise
Pré-requis : · Une infrastructure SCCM 2012 R2 · Des clients Windows 8 ou 8.1 en version Pro ou Entreprise · L’application téléchargée sur le site de Microsoft ICI Deux clefs de registre à modifier en GPP gpmc.msc > « nouvelle GPO » nommée "Portail d'entreprise"...
-
[W7] [W8] [W10] La Solution pour Désactiver TrustedInstaller
La solution ultime est de désactiver TrustedInstaller. Pour y arriver voici la procédure à suivre : Le principe est de changer l’accès total en l’attribuant à un autre utilisateur avec les mêmes droits d’accès que celui du TrustedInstaller. Donc pour...
-
[W8] [Wintogo] [tuto] I tested manualy windows to go for windows 8
I tested windows to go for windows 8. Brainstorming... I) Using RMPREPUSB that is working with ALL Usb Key:The source of this part is: http://www.pcastuces.com/pratique/windows/8/windows_to_go/page4.htm : 1) download here: https://www.rmprepusb.com/documents/release-2-0/Install_RMPrepUSB_Full_v2.1.730B_pwd_is_rmprep.zip?attredirects=0&d=1(*...
-
[DART] [W8] Download links of Windows 8 & 8.1 DART
I think this will be of great interest to the following systems experts of this blog: (i upload the ISO file into my cloud to be sure that they will not be deleted) Externals links : 1fichier.com French DaRT 8 (support Windows 8) DaRT8x64.iso > Système...
-
[Windows 10] Disable cortana
$path = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search" IF(!(Test-Path -Path $path)) { New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows" -Name "Windows Search" } Set-ItemProperty -Path $path -Name "AllowCortana" -Value 0 #Restart Explorer...
-
[Windows 10] Vérifier la compatibilité d’un logiciel
Microsoft a mis à disposition une page Web permettant de vérifier la compatibilité d’un logiciel en fonction des versions de Windows 10. Cette page s’appuie sur la base de données qu’utilise MS dans ces différents produits et permet de connaitre si un...
-
[SCCM] Step by Step SCCM Configuration Manager Troubleshooting Guides
sources guides for TB SCCM: 1 : Task Sequence Failed with the Error Code 0x80070002 2 : Error 0x800706BA Failed to install Distribution Point 3 : Failed to connect to admin share using machine account 4 : The software change returned error code 0x87D00607...
-
[SCCM] SCCM 2012 R2 – Astuce packaging d’application
Comment obtenir un fichier MSI à partir d’un fichier EXE ? Les éditeurs mettent généralement à disposition des fichiers d’installation parfois en fichier EXE, MSI ou EXE + MSI. Dans le cas où le MSI n’est pas disponible, voici une astuce pour tenter d’obtenir...
-
[SCCM] [INTUNE] How to enroll an Android Device in SCCM
Enable Android enrollment Perform the following actions to enable SCCM for Android enrollment Open the SCCM 2012 console Go to Administration / Overview / Cloud Services / Windows Intune Subscriptions Right click Windows Intune Subscription Select Properties...
-
[INTUNE] Preparing Intune environment for Mobile Device Management
Before you can prepare your Intune environment, you need to get your Intune subscription. You can apply for a free trial or see all detailed licensing packages. The first step in order to link Intune and your Configuration Manager 2012 server is to add...
/image%2F0881799%2F20140610%2Fob_a8c7fe_logo2.jpg)