桌面上的 Powershell 快捷方式:链接两个命令

Powershell shortcut on desktop: Chain two commands

我正在尝试在桌面上创建快捷方式:

%windir%\system32\WindowsPowerShell\v1.0\powershell.exe -noexit -command import-module \fs\PS\MyModule\MyModule.dll

这是有效的。此外,我想在自动打开 PS 后读取该模块的所有命令。如何附加以下内容:

get-commands -Module MyModule

谢谢 短笛

尝试这样的事情

powershell.exe -noexit -command "& { import-module \fs\PS\MyModule\MyModule.dll; ... others command ...}"