はい、さまざまなモジュールを使用してPowershell経由でできます:
1- DBAToolsの使用:Powershellを開く
<# Install-Module dbatools#> #only if not installed
<# Load the module#>
Import-module dbatools
export-dbalogin -SqlInstance ServerName f:\floginsdba.txt
2- SQLSERVERモジュールの使用:
<# Install-Module sqlserver#> #only if not installed
<# Load the module#>
Import-module sqlserver
cd sqlserver:\serverA\default\logins # replace the default with any named Inst
dir | %{$_.script()}
<# For security, it will create disabled logins and hashed passwords for sql logins.#>
ヘルプが必要な場合はお知らせください。