About 50 results
Open links in new tab
  1. What does 1 stands for in .ps1 PowerShell file extention?

    Aug 15, 2022 · 16 Presumably, although I have no documentation to back it up, it's because the 1 was for PS v1. Powershell v2 scripts were supposed to use the extension .ps2 but Microsoft dropped the …

  2. windows - Powershell/Cmd: Find files with a certain extension ...

    Jul 12, 2019 · i’m thinking this might be less of an issue of what script you are running and more to do with your file associations - what program is currently set to open public keys by default? i was under …

  3. Powershell - Find and move files with specific extension while ...

    Aug 1, 2022 · However I need to retain each individual file's file-path/folder structure in the new server. Example: get-childitem "D:\*" -Filter *.mp4 -recurse This returns all the files with an .mp4 extension …

  4. Set default app for .PDF file extension to Adobe or Edge?

    Mar 1, 2021 · When my default app is Adobe, print works. When my default app is Edge, print does not work, but the return from ftype is exactly the same as when my default was Adobe. Does anyone …

  5. How to extract a complete list of extension types within a directory?

    Mar 7, 2012 · 4 Here's a detailed answer using PowerShell (with Windows XP you'll have to install PowerShell): Hey, Scripting Guy! How Can I Use Windows PowerShell to Pick Out the Unique File …

  6. Powershell to delete all files with a certain file extension

    Jun 20, 2016 · Powershell to delete all files with a certain file extension Ask Question Asked 9 years, 7 months ago Modified 2 years, 5 months ago

  7. powershell - How do we search for files which contain a specific word ...

    Sep 17, 2023 · How do we use Microsoft Windows PowerShell and Regular Expressions (Regex) in order to find all of the pictures (image files) on a computer such that the file name contains the word " …

  8. Is there a way to change multiple file extensions at once on Windows …

    Jan 9, 2024 · If I have a bunch of files with one file extension, is there a way to quickly change them to another file extension without having to manually change one file at a time? The Microsoft support …

  9. powershell - How do I get get-childitem to filter on multiple file ...

    But got this error: Get-ChildItem : Cannot bind parameter because parameter 'Filter' is specified more than once. To provide multiple values to parameters that can accept multiple values, use the array …

  10. Get count of file types in a directory - Super User

    Jun 5, 2019 · 2 How can I get a file count given a directory grouped by file type? The output might look something like .txt: 4 .png: 16 .jpg: 32 This probably isn't difficult to achieve with a script, but is there …