s
  • Skip to primary navigation
  • Skip to content
  • Skip to footer
NicolD blog
  • posts by year
  • tags
  • my old MSDN blog
    Nicola Delfino

    Nicola Delfino

    I meet people, I do things for @Microsoft. My opinions and my tweets are my own, not the views of my employer and should NEVER be taken seriously.

    • Italy
    • Twitter
    • Facebook
    • GitHub
    • Instagram
    • Flickr
    • Linkedin
    • Email

    NicolTIP#019- How to recursively delete (hidden) SVN Folders in PowerShell 2.0

    less than 1 minute read

    Super easy script from The Pursuite of Life Blog, that I ‘m copying here in order to keep it in my toolboxSmile

    (get-childitem -recurse -force | where-object { $_.PsIsContainer -eq $true -and $_.Name -eq ".svn" } ) | remove-item –recurse –force

    Tags: delete, powershell, Script, svn

    Updated: December 27, 2010

    Share on

    Twitter Facebook LinkedIn
    Previous Next

    You may also enjoy

    Azure Open AI recipes for Azure API Management Service

    16 minute read

    A collection of recipes for Azure API Management for those who need to expose one or more instances of Azure OpenAI.

    Azure OpenAI powershell chat-completition call sample

    1 minute read

    a powershell script that shows how to call an Azure OpenAI chat completition endpoint API

    How to intercept the “run as administrator” event

    3 minute read

    in this blog post I show how to intercept the run-as-administrator on a windows machine

    How to install and run noisy on an Azure VM

    4 minute read

    a PowerShell and shell script that facilitates the installation of Python and Git, subsequently download the repository of Noisy from GitHub and run it with ...

    • Follow:
    • GitHub
    • Feed
    © 2025 NicolD blog. Powered by Jekyll & Minimal Mistakes.