We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi thanks for posting and all the great info about WVD, I have an issue whiling setting up the remote apps here.
This is what i am trying to run $RemoteApps = @( @{AppGroupName = 'MeltwaterdevWDV-WVD'; FilePath = 'mw-dev-eus-rad.rdp'} @{AppGroupName = 'MeltwaterdevWDV-WVD'; FilePath = 'mw-dev-eus-ad1.rdp'} ) foreach ($App in $RemoteApps) { Get-RdsStartMenuApp -TenantName $WVDTenantName -HostPoolName $WVDHostPoolName -AppGroupName $App.AppGroupName | ? FilePath -Match $App.FilePath ` -OutVariable NewApp
-TenantName $WVDTenantName
-AppGroupName $App.AppGroupName
New-RdsRemoteApp ` -TenantName $WVDTenantName ` -HostPoolName $WVDHostPoolName ` -AppGroupName $App.AppGroupName ` -Name $NewApp.FriendlyName ` -Filepath $NewApp.filepath ` -IconPath $NewApp.iconpath ` -IconIndex $NewApp.iconindex
}
This is an error that I got New-RdsRemoteApp : Cannot bind argument to parameter 'Name' because it is null. At line:20 char:15
-Name $NewApp.FriendlyName `
~~~~~~~~~~~~~~~~~~~~
New-RdsRemoteApp : Cannot bind argument to parameter 'Name' because it is null. At line:20 char:15
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi thanks for posting and all the great info about WVD, I have an issue whiling setting up the remote apps here.
This is what i am trying to run
$RemoteApps = @(
@{AppGroupName = 'MeltwaterdevWDV-WVD'; FilePath = 'mw-dev-eus-rad.rdp'}
@{AppGroupName = 'MeltwaterdevWDV-WVD'; FilePath = 'mw-dev-eus-ad1.rdp'}
)
foreach ($App in $RemoteApps) {
Get-RdsStartMenuApp
-TenantName $WVDTenantName
-HostPoolName $WVDHostPoolName
-AppGroupName $App.AppGroupName
| ? FilePath -Match $App.FilePath `
-OutVariable NewApp
}
This is an error that I got
New-RdsRemoteApp : Cannot bind argument to parameter 'Name' because it is null.
At line:20 char:15
New-RdsRemoteApp : Cannot bind argument to parameter 'Name' because it is null.
At line:20 char:15
The text was updated successfully, but these errors were encountered: