4402 links
38 private links
  • Strak.ch | Actu et liens en vrac
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 2
38 results tagged WindowsServer x
  • Microsoft blames Windows Server 2025 automatic upgrades on 3rd-party tools

    Ben c'était ptetre pas la faute de Microsoft, finalement !
    La suite de https://liens.strak.ch/shaare/AZ2ruw

    November 14, 2024 at 5:41:53 PM GMT+1 * - permalink -
    QRCode
    - https://www.bleepingcomputer.com/news/microsoft/microsoft-blames-windows-server-2025-automatic-upgrades-on-third-party-tools/
    WindowsServer Update
  • Windows 2022 Servers Unexpectedly Upgrading to 2025, Aaaargh!

    Oups... pas bien Microsoft.

    November 6, 2024 at 9:10:38 PM GMT+1 * - permalink -
    QRCode
    - https://www.reddit.com/r/sysadmin/comments/1gk2qdu/windows_2022_servers_unexpectedly_upgrading_to/
    WindowsServer Fail Update
  • Saut temporal dans Windows : une des causes | Blog officiel de Kaspersky

    Je suis déjà tombé sur des workstations où l'heure est momentanément pétée sans comprendre pourquoi.
    Une des causes peut être un problème de communication inhérent au TLS.

    September 17, 2023 at 9:09:11 AM GMT+2 * - permalink -
    QRCode
    - https://www.kaspersky.fr/blog/windows-system-time-sudden-changes/20952/
    WindowsServer Time TLS
  • Unable to upgrade Server 2019 Essentials to 2019 Standard - Microsoft Q&A

    Pour activer un Windows Server Evaluation récalcitrant:

    Dism /online /Set-Edition:ServerStandard /AcceptEula /ProductKey:N69G4-B89J2-4G8F4-WWYCC-J464C

    then after conversion (using your new key):
    slmgr /ipk xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
    slmgr /ato

    June 16, 2023 at 9:35:52 AM GMT+2 * - permalink -
    QRCode
    - https://learn.microsoft.com/en-us/answers/questions/248042/unable-to-upgrade-server-2019-essentials-to-2019-s
    WindowsServer
  • Installation and configuration deduplication with Windows 2016/2019/2022 - RDR-IT

    Je n'ai encore jamais vu en prod de la dédup' niveau fichiers sur du Windows Server, je serai intéressé de connaitre les avantages et inconvénients.

    March 11, 2023 at 10:56:35 AM GMT+1 * - permalink -
    QRCode
    - https://rdr-it.com/en/installation-and-configuration-deduplication-with-windows-2016-2019-2022/
    WindowsServer Déduplication FileSystem
  • January Updates ReFS became RAW for Database Volumes : exchangeserver

    Si toi aussi tu gères un Exchange 2016 sous VMWare et que les updates Windows ont bousillé tes volumes ReFS: https://kb.vmware.com/s/article/1012225?lang=en_us

    • From a web browser, connect to the vSphere Web Client.
    • Log in with Administrator credentials.
    • Navigate to the virtual machine you want to modify.
    • Power off the virtual machine.
    • Right-click the virtual machine and select Edit Settings.
    • Click the VM Options tab.
    • Click Advanced > Edit Configuration.
    • Either select Add Row, or enter the values directly into the provided fields at the bottom.
    • Insert a new row with the name devices.hotplug and a value of false.
    • Power on the virtual machine.

    J'allais commencer à désinstaller les updates, ce paramètre m'a fait gagner un temps infini.

    February 22, 2022 at 10:32:19 PM GMT+1 * - permalink -
    QRCode
    - https://www.reddit.com/r/exchangeserver/comments/s1y5pw/january_updates_refs_became_raw_for_database/huldlko/?context=3
    Exchange Update WindowsServer Bug
  • GPO – Comment empêcher les utilisateurs d’exécuter certains logiciels ? | Stratégie de groupe | IT-Connect

    Coudé, parce que c'est assez trivial de bloquer les EXE/MSI qui ne sont pas aux endroits qu'on estime être sécurisés/standards.

    October 5, 2021 at 6:52:42 PM GMT+2 * - permalink -
    QRCode
    - https://www.it-connect.fr/gpo-comment-empecher-les-utilisateurs-dexecuter-certains-logiciels/
    Sécurité Logiciel GPO WindowsServer
  • Microsoft Windows Server 2022 est enfin disponible pour le grand public - ZDNet

    Sinon, Windows Server 2022 est sorti apparemment. Je n'ai pas encore touché à Windows 11, je laisse mes confrères essuyer les bugs, euh, s'amuser ! ;)

    August 28, 2021 at 8:40:33 AM GMT+2 * - permalink -
    QRCode
    - https://www.zdnet.fr/actualites/microsoft-windows-server-2022-est-enfin-disponible-pour-le-grand-public-39927951.htm
    Microsoft WindowsServer
  • GitHub - microsoft/AaronLocker: Robust and practical application control for Windows

    "AaronLocker is designed to make the creation and maintenance of robust, strict, application control
    for AppLocker and Windows Defender Application Control (WDAC) as easy and practical as possible."

    June 10, 2020 at 8:35:09 PM GMT+2 - permalink -
    QRCode
    - https://github.com/microsoft/AaronLocker
    Applocker WindowsServer Sécurité ActiveDirectory
  • Powershell: copier les groupes d'un user à l'autre

    Get-ADUser -Identity $CopyFromThisUser -Properties memberof | Select-Object -ExpandProperty memberof | Add-ADGroupMember -Members $CopymembersToThisUser

    May 19, 2020 at 6:47:10 PM GMT+2 * - permalink -
    QRCode
    - https://liens.strak.ch/shaare/9owtEg
    Powershell ActiveDirectory WindowsServer
  • Active Directory : ajouter un suffixe UPN

    Pour la mémoire, car on ne le fait pas souvent.

    April 6, 2020 at 10:31:16 PM GMT+2 - permalink -
    QRCode
    - https://rdr-it.com/active-directory-ajouter-un-suffixe-upn/
    ActiveDirectory WindowsServer
  • Désactiver le démarrage auto du Gestionnaire de serveur pour tous les utilisateurs

    C'est vrai que c'est chiant, je passe ma vie à le désactiver où je passe !
    Bon à savoir qu'il y a une GPO dédiée, une tâche planifiée à désactiver ou une ligne powershell pour s'en débarrasser:

    Get-ScheduledTask -TaskName ServerManager | Disable-ScheduledTask -Verbose
    February 8, 2020 at 11:26:29 PM GMT+1 - permalink -
    QRCode
    - https://www.it-connect.fr/desactiver-le-demarrage-auto-du-gestionnaire-de-serveur-pour-tous-les-utilisateurs/
    WindowsServer Tricks Sysadmin
  • Configurer le split-brain DNS sur Windows Server

    TL;DR.

    January 22, 2020 at 5:37:26 PM GMT+1 - permalink -
    QRCode
    - https://www.it-connect.fr/configurer-le-split-brain-dns-sur-windows-server/
    WindowsServer DNS
  • Let's encrypt générer un PFX avec IIS - RDR-IT

    C'est donc toujours possible de mettre un certificat Let's encrypt sur un Exchange par exemple, bon à savoir.

    January 6, 2020 at 5:46:18 PM GMT+1 - permalink -
    QRCode
    - https://rdr-it.com/lets-encrypt-generer-un-pfx-avec-iis/
    LetsEncrypt IIS Chiffrement Sécurité WindowsServer
  • How to create and manage the Central Store for Group Policy Administrative Templates in Windows

    Lien vers les ADMX pour mettre à jour les GPO sous Windows Server.

    August 29, 2019 at 6:59:30 PM GMT+2 - permalink -
    QRCode
    - https://support.microsoft.com/en-gb/help/3087759/how-to-create-and-manage-the-central-store-for-group-policy-administra
    WindowsServer GPO Update
  • PassFilt.dll – Complexifier sa politique de mot de passe Windows

    Pour aller plus loin avec la gestion des mots de passe sur Active Directory, qui est assez basique par défaut.

    June 6, 2019 at 7:35:50 PM GMT+2 - permalink -
    QRCode
    - https://blog.scrt.ch/2017/08/23/passfilt-dll-complexifier-sa-politique-de-mot-de-passe-windows/
    Passwords ActiveDirectory Sécurité WindowsServer
  • Windows Server, voir les fichiers ouverts sur les partages réseaux - RDR IT

    J’utilise souvent cette astuce quand le serveur est trop con pour dire quel user bloque tel fichier.

    March 26, 2019 at 6:46:01 PM GMT+1 - permalink -
    QRCode
    - https://rdr-it.com/windows-server-voir-les-fichiers-ouverts-sur-les-partages-reseaux/
    WindowsServer Tricks
  • Windows Server - Serveur d'impression et isolation des pilotes | Système | IT-Connect

    Je ne connaissais pas ce mode, "isolé" pour les pilotes d'impression, intéressant.

    January 15, 2019 at 9:55:33 PM GMT+1 - permalink -
    QRCode
    - https://www.it-connect.fr/windows-server-serveur-dimpression-et-isolation-des-pilotes/
    WindowsServer Impression
  • Configure External and Internal URL in Exchange 2016

    Pour préparer un joli Exchange 2016 avec de belles url.

    October 12, 2018 at 12:47:42 AM GMT+2 * - permalink -
    QRCode
    - http://www.mustbegeek.com/configure-external-and-internal-url-in-exchange-2016/
    Exchange WindowsServer
  • Cluster à basculement Hyper-V avec Windows Server 2016 | Hyper-V | IT-Connect

    J'ajouterai à la fin de ce tuto qu'il serait de bonne augure de tester le fonctionnement de son cluster après sa mise en place !

    September 12, 2018 at 7:32:14 PM GMT+2 * - permalink -
    QRCode
    - https://www.it-connect.fr/cluster-a-basculement-hyper-v-avec-windows-server-2016/
    Hyper-V WindowsServer
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation