How can I associate a file type with a powershell

2020-06-16 09:31发布

I have a very powershell script that works perfectly and does:

Param(
  [string]$fileName
) 

echo "Woo I opened $fileName"

When I run it on the command line, it works:

my-script.ps1 .\somefile

Returns:

Woo I opened somefile

I would like to associate my-script.ps1 with a particular file type. I am attempting to do this via 'Open With' However:

  • Windows doesn't include Powershell scripts as 'Programs' (though it considers CMD and batch scripts as 'Programs')

enter image description here

  • When I pick 'All Files' instead, and pick my powershell script, Windows shows this message

enter image description here

How can I associate a file type with a Powershell script?

4条回答
Fickle 薄情
2楼-- · 2020-06-16 10:09

For those like me who got here looking for general file types associations, I ended up using this function:

Function Create-Association($ext, $exe) {
    $name = cmd /c "assoc $ext 2>NUL"
    if ($name) { # Association already exists: override it
        $name = $name.Split('=')[1]
    } else { # Name doesn't exist: create it
        $name = "$($ext.Replace('.',''))file" # ".log.1" becomes "log1file"
        cmd /c 'assoc $ext=$name'
    }
    cmd /c "ftype $name=`"$exe`" `"%1`""
}

I struggled with proper quoting from @Ansgar Wiechers's answer but finally got it right :)

查看更多
够拽才男人
3楼-- · 2020-06-16 10:14

Here's my remix of @Matthieu 's great remix of @Ansgar Weichar's great answer.

Matthieu's is set up for executables, and doesn't work for powershell scripts for the same reasons the OP describes.

Function Set-FileAssociationToPowerShellScript($extension, $pathToScript) {

    # first create a filetype
    $filetype = cmd /c "assoc $extension 2>NUL"
    if ($filetype) {
        # Association already exists: override it
        $filetype = $filetype.Split('=')[1]
        Write-Output "Using filetype $filetype"
    }
    else {
        # Name doesn't exist: create it
        # ".log.1" becomes "log1file"
        $filetype = "$($extension.Replace('.', ''))file"
        Write-Output "Creating filetype $filetype ($extension)"
        cmd /c "assoc $extension=$filetype"
    }
    Write-Output "Associating filetype $filetype ($extension) with $pathToScript.."
    cmd /c "ftype $filetype=powershell.exe -File `"$pathToScript`" `"%1`""
}
查看更多
虎瘦雄心在
4楼-- · 2020-06-16 10:15

Use the proper tools for the job:

cmd /c assoc .fob=foobarfile
cmd /c ftype foobarfile=powershell.exe -File `"C:\path\to\your.ps1`" `"%1`"

Note that both assoc and ftype are CMD-builtins, so you need to run them via cmd /c from PowerShell.

For files without extension use this association:

cmd /c assoc .=foobarfile
查看更多
该账号已被封号
5楼-- · 2020-06-16 10:23

I don't think you can do it through Windows UI.

The goal here is to associate a type with powershell.exe, arguments to which will be

  1. The powershell script
  2. The target filename

To do this

  1. Launch Regedit.exe. //disclaimer: you are editing Windows registry. Here be tigers.
  2. Go to HKEY_CLASSES_ROOT (admin access, for all users) or HKEY_CURRENT_USER\SOFTWARE\Classes
  3. Create a key named .<extension>, e.g. if you want to associate *.zbs - create a key .zbs
  4. Set it's (default) value to something like zbsfile -- this is a reference linking your extension to a filetype.
  5. Create a key called zbsfile - this is your filetype
  6. Set (default) value to something readable, e.g. "This file is ZBS."
  7. Underneath create a tree of keys (examples are all around):

zbsfile shell open command

  1. Under command, set (default) value to e.g.
    powershell.exe -File "C:\path\to your\file.ps1" "%1"
    where %1 means the file user clicked

That should work.

EDIT: or (crazy idea), create a bat file doing just powershell.exe -File "C:\path\to your\file.ps1" "%%1" and select it in Windows UI...

查看更多
登录 后发表回答