4595 links
39 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 2 / 3
Newer►
55 results tagged Script x
  • Universal MediaCreationTool wrapper for all MCT Windows 10 versions

    Un script pour VRAIMENT choisir quelle version de Windows 10 on download avec le MediaCreationTool.

    via https://www.ghacks.net/2020/10/31/here-is-how-you-download-any-windows-10-version-iso-from-microsoft/

    November 2, 2020 at 5:24:48 PM GMT+1 * - permalink -
    QRCode
    - https://gist.github.com/AveYo/c74dc774a8fb81a332b5d65613187b15
    Windows10 Outils Script
  • WireGuard VPN installer for Linux servers

    Un script pour rapidement installer WireGuard côté serveur.

    La même pour OpenVPN: https://github.com/angristan/openvpn-install

    May 23, 2020 at 2:44:17 PM GMT+2 - permalink -
    QRCode
    - https://github.com/angristan/wireguard-install
    VPN Wireguard OpenVPN Script
  • Powershell script to check Last Reboot Time on a list of machines in a text file

    Titre.

    gwmi win32_operatingsystem -ComputerName $machine | select csname, @{LABEL='LastBootUpTime';EXPRESSION={$_.ConverttoDateTime($_.lastbootuptime)}}
    March 6, 2020 at 11:10:24 PM GMT+1 - permalink -
    QRCode
    - https://gallery.technet.microsoft.com/scriptcenter/Powershell-script-to-check-b1bfbc21#content
    Powershell Script
  • Uninistall Malwarebytes remotely

    Testé/fonctionnel:

    PsExec.exe \computername "c:\program files\Malwarebytes\Anti-malware\unins000.exe" /verysilent /suppressmsgboxes /norestart
    October 21, 2019 at 5:32:41 PM GMT+2 * - permalink -
    QRCode
    - https://liens.strak.ch/shaare/QPPBow
    Malwarebytes Désinstallation Script
  • Script Generate Health Report for an Exchange Server 2016/2013/2010 Environment

    Un script pour générer un rapport human-readable d'un serveur Exchange.

    August 12, 2019 at 1:30:41 PM GMT+2 - permalink -
    QRCode
    - https://gallery.technet.microsoft.com/scriptcenter/Generate-Health-Report-for-19f5fe5f
    Exchange Script Powershell
  • Game Servers - LinuxGSM

    Un générateur de script pour un déployer des serveurs de jeux dédiés.

    March 16, 2019 at 12:38:03 PM GMT+1 * - permalink -
    QRCode
    - https://linuxgsm.com/servers/
    Gaming AutoHébergement Script
  • Managing IIS Log File Storage | Microsoft Docs

    Un script vbs pour nettoyer les logs IIS.

    sLogFolder = "c:\inetpub\logs\LogFiles"
    iMaxAge = 30   'in days
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    set colFolder = objFSO.GetFolder(sLogFolder)
    For Each colSubfolder in colFolder.SubFolders
            Set objFolder = objFSO.GetFolder(colSubfolder.Path)
            Set colFiles = objFolder.Files
            For Each objFile in colFiles
                    iFileAge = now-objFile.DateCreated
                    if iFileAge > (iMaxAge+1)  then
                            objFSO.deletefile objFile, True
                    end if
            Next
    Next
    January 8, 2019 at 8:47:27 AM GMT+1 * - permalink -
    QRCode
    - https://docs.microsoft.com/en-us/iis/manage/provisioning-and-managing-iis/managing-iis-log-file-storage
    Windows IIS Script
  • How to count number of subfolders under certain folder in Outlook?

    Un script VBA pour compter les folders dans Outlook.

    December 5, 2018 at 3:40:14 PM GMT+1 - permalink -
    QRCode
    - https://www.extendoffice.com/documents/outlook/5208-outlook-subfolder-count.html
    Outlook Script
  • Youtube est 5x plus lent sur Firefox et Microsoft Edge. Comment régler le souci ? – Korben

    Ah, les bâtards ! J'ai installé direct le script TamperMonkey et j'ai tout de suite senti la différence... soi-disant une histoire de compatibilité, c'est cela oui...

    August 7, 2018 at 10:24:43 PM GMT+2 - permalink -
    QRCode
    - https://korben.info/youtube-est-5x-plus-lent-sur-firefox-et-microsoft-edge-comment-regler-le-souci.html
    YouTube Tricks WTF Script
  • GitHub - Sycnex/Windows10Debloater: Script to remove Windows 10 bloatware.

    Un autre script pour nettoyer Windows 10 sorti d'usine.
    Enlève notamment: les apps par défaut, OneDrive sur demande, les entrées de registre liées.
    En cours de test.

    June 29, 2018 at 3:00:40 PM GMT+2 - permalink -
    QRCode
    - https://github.com/Sycnex/Windows10Debloater
    Windows10 Script Nettoyage
  • Google Search "View Image" Button | Tampermonkey, Greasemonkey

    Un script pour ramener le bouton "Voir l'image" dans Google Images, qui a décidé de le virer du jour au lendemain.

    February 19, 2018 at 7:42:37 PM GMT+1 - permalink -
    QRCode
    - https://raw.githubusercontent.com/devunt/make-gis-great-again/master/gis-vib.user.js
    Google Script Images
  • Disable SMB v1 in Managed Environments with Group Policy – "Stay Safe" Cyber Security Blog

    Coudé.

    July 4, 2017 at 12:47:28 PM GMT+2 - permalink -
    QRCode
    - https://blogs.technet.microsoft.com/staysafe/2017/05/17/disable-smb-v1-in-managed-environments-with-ad-group-policy/
    Crypto Ransomware Script GPO Windows
  • WannaCry : comment détecter la faille sur vos machines (nmap)

    1) nmap pour Windows: https://nmap.org/download.html#windows
    2) coller le script https://raw.githubusercontent.com/cldrn/nmap-nse-scripts/master/scripts/smb-vuln-ms17-010.nse dans C:\Program Files (x86)\Nmap\scripts\
    3) Exemple de commande dans un CMD: nmap -sC -p 445 -max-hostgroup 3 -open --script smb-vuln-ms17-010.nse 172.24.1.0/24 -oN resultat.txt

    Testé et approuvé !

    May 17, 2017 at 5:56:52 PM GMT+2 - permalink -
    QRCode
    - http://blogmotion.fr/systeme/nmap-scan-nse-resultat-15987
    Chiffrement Crypto Hacking Ransomware Script Scanner
  • Mimipenguin: A tool to dump the login password from the current linux user

    Titre.

    April 14, 2017 at 12:40:55 PM GMT+2 - permalink -
    QRCode
    - https://github.com/huntergregal/mimipenguin
    Linux Script Passwords
  • GitHub - maldevel/EmailHarvester: Email addresses harvester

    Un script qui va crawler le web, càd les moteurs de recherche populaires ainsi que les réseaux sociaux, afin de trouver les adresses mails
    liées à un nom de domaine. Pratique pour expliquer à un client que balancer ses adresses n'importe où augmente le spam...

    April 5, 2017 at 10:45:36 AM GMT+2 - permalink -
    QRCode
    - https://github.com/maldevel/EmailHarvester
    Spam Script Antispam Mail
  • Afficher une notification sur Windows 10 avec PowerShell

    Coudé.

    March 9, 2017 at 10:36:05 PM GMT+1 - permalink -
    QRCode
    - https://www.it-connect.fr/afficher-une-notification-sur-windows-10-avec-powershell/
    Powershell Script Windows10
  • PiVPN: Simplest setup of OpenVPN (on Raspberry Pi)

    Titre.

    March 8, 2017 at 12:01:01 AM GMT+1 * - permalink -
    QRCode
    - http://www.pivpn.io/
    RaspberryPi VPN Script
  • WSUS Server Cleanup Wizard Hangs on “Deleting unused updates…” – Chase’s Notes

    Pour débugger et nettoyer WSUS. Script pas encore testé.

    Voir aussi https://technet.microsoft.com/en-us/library/dd939795(WS.10).aspx
    et https://gallery.technet.microsoft.com/scriptcenter/6f8cde49-5c52-4abd-9820-f1d270ddea61

    November 10, 2016 at 10:06:41 PM GMT+1 - permalink -
    QRCode
    - http://www.chaseoriginal.com/techcell/technotes/wsus-server-cleanup-wizard-hangs-on-deleting-unused-updates/
    Windows Tricks WSUS Script
  • QuickBox IO - A Quick User Friendly Seedbox Deploy Script. It's much more than a script!

    Un script all-in-one pour installer une seedbox sexy sur un serveur dédié. Sympa !

    via http://www.matronix.fr/quickbox-io-a-quick-user-friendly-seedbox-deploy-script-its-much-more-than-a-script/

    October 9, 2016 at 8:50:46 PM GMT+2 - permalink -
    QRCode
    - https://quickbox.io/
    Seedbox Script Download
  • Installing Printers with PowerShell | PowerShell content from Windows IT Pro

    Coudé.

    via http://liens.bytesadmin.net/?48411w

    September 14, 2016 at 5:44:08 PM GMT+2 - permalink -
    QRCode
    - http://windowsitpro.com/powershell/installing-printers-powershell
    Imprimante Script Powershell
Links per page: 20 50 100
◄Older
page 2 / 3
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation