Quantcast
Channel: Rocket Remote Desktop Support Forums - Remote Desktop Support (Version 2015 - 2020)
Viewing all 1117 articles
Browse latest View live

Powershell Connection suchen / löschen

$
0
0
Hallo,

ich habe eine ASG RD Datenbank mit mehreren tausend connections. Das hinzufügen in eine entsprechende Ordner Struktur funktioniert ohne Probleme.
Wie kann ich mit PS Objekte wieder löschen, wenn ich deren ParentID/Folder nicht kenne. Die liegen irgendwo in der Ordnerstruktur (mehrere hundert Ordner)
Kann ich alle Connections zurückbekommen und dieses nach Destination oder Name der Connection Filtern, um dann selektiv zu löschen?

Danke

Commandline Parameter für Applikationsstart

$
0
0
Hi, ich will mich derzeit um eine Bereitstellung von ASG Remote Desktop 2018 auf einer Citrix XenApp Umgebung kümmern. Bisher ist dort vRD2011 im Einsatz und dort wird für die Anwender via Batchskript direkt der Umgebungswizard übersprungen, indem der Parameter /instance:<Name> angegeben wird. Komischerweise funktioniert dies in der neuen Umgebung nicht und es öffnet sich immer der Anmeldedialog mit Angabe der Umgebung, der Anmeldemethode usw. Besteht hier eine Möglichkeit, dass das in der neuen Version auch wieder "übergangen" wird?
vlg

.png   2018-02-14 11_09_01.png (Size: 13.99 KB / Downloads: 0)

RDP Logoff Problem

$
0
0
Hello,
 
I'm using ASG RD 2018.
When using the RDP button and choosing "Log off current user" – nothing happens. What should I do to make it work?
RDP->Send Ctrl-Alt-Del is working just fine.
 
Thanks,
Tomer Ofir

ASG RD2017 crashing

$
0
0
Hello

Almost every day i have a problem with ASG Remote Desktop 2017. It just stops working with an unspecific error message. I had the same problem already with version 2015 and was hoping updating to 2017 would help. But it didn't.

Please see the attached error messages.

Unfortunately i did not find the mentioned debugging option.

Anyone can help how to find the problem?

Best regards
Adrian

.png   1.png (Size: 8.82 KB / Downloads: 2)

.png   2.png (Size: 14.45 KB / Downloads: 2)

Thycotic - Secret Server Online

$
0
0
Will the new Thycotic support only work with premise Secret Server or will it integrate with the online offering?

Thanks

How to upgrade and/or import old .vrb file

$
0
0
I have installed 2018, however, I need to import an old 1.5 .vrb file for the connections.  How do I get hold of a version that can export to something I can import to 201, or can I convert this format to something I can import into 2018?  I can't find downloads for versions of ASG older than 2015.

Icon management

$
0
0
In vRD2011/2012 I had a neat trick to bulk update connection icons based on connection type so I could easily distinguish say, SSH from Telnet connections
I simply ran a daily job on the SQL server with commands like

-- ssh

UPDATE [VRDDB].[dbo].[vRDConnections]
   SET IconId = '7dc03bc1-ee74-4c8a-b7f7-98837293dcd0'
 WHERE DefaultProtocol = '3'

 
Each protocol including Ext Apps got its own icon. Easy!
 
So now the database looks very different and I understand it is necessary to use Powershell-API to interact with the data in there.
 
Now I need to be a Powershell Guru to manage ASG. Is there a capability to update connection icons in the current release? None of the Powershell commands seem to offer any help/examples... is that coming soon?

 

Connect to a list of computers?

$
0
0
Is there a way to do this without adding these PCs to the DB? This is just a one time thing I have to do.

ASGRD - Fehler DB-Modus Spaltenbreite Logbuch

$
0
0
Hallöchen,

seit Versionen (ab 2012) besteht der "Fehler", das im Tab Logbuch die Spaltenbreite nicht gesichert wird. Nach jedem Neustart muss mann die Spalten Zeitstempel und Benutzername erst großziehen, um die Inhalte zu erkennen. Gibt es eine Prefs-Datei in der die Breite einstellbar ist?

MfG edv-zentral

ASGRD2018: SmartSizing

$
0
0
Hallöchen,

mit 2018 wird das Smartsizing bei RDP extrem unscharf. Die gleichen Einstellunge in 2017 zeigen den Effekt nicht. Schaltet man das Smartsizing aus, so ist bei einigen Auflösungen (z.B. 1680x1050), das Fenster zu klein und es werden sofort Schiebebalben angezeigt. Wie kann man Abhilfe schaffen?

MfG edv-zentral

Running powershell within automation.

$
0
0
I use an automation tool to deploy servers, this uses NSH scripting which I call powershell scripts from, where required.


I am trying to get the automation to add an RDP connection in to ASG RD 2018.
I have ASGRD 2018 x86 installed and the environment set up, on the server where the powershell script runs, to add the entry in to ASG RD.

The NSH script calls powershell x86 and the .ps1 script, passing the name of the server to it:
Code:
nexec ${host} cmd /c "C:/Windows/SysWOW64/WindowsPowerShell/v1.0/powershell.exe -inputformat none -ExecutionPolicy Bypass C:/tmp/AddServerToVisionApp.ps1 -server_name $SERVER"  

The PowerShell script works fine if I run it locally on the server:
Code:
#0.5 - Testing

param(
[STRING]$Server_Name
)

#establish connection to the correct API dll to import modules
$workingdir = "C:\Program Files (x86)\ASG-Remote Desktop 2018\"
Set-Location $workingdir
[Environment]::CurrentDirectory = Get-Location -PSProvider FileSystem
$path = $workingdir + "ASGRD-PSAPI.dll"
Add-Type -path $path
[reflection.assembly]::LoadFrom($path) | Import-Module

#pass the hostname of the server to $servername
$servername = $Server_Name

#connect to the ASGRD environment
Connect-RDEnvironment -Environment [DELETED SENSITIVE INFO]

# create new connection, the perentitemid can be the root or the id of a subfolder
New-RDBaseItem -ParentItemId 3938b5a5-d1fb-4905-b60b-7fc89184be9c -ItemType Connection -Text $servername

#create path to the item created – must be the full path to the item
$serverpath = Join-Path -path "Connections\IAAS\" -ChildPath $servername

#get the id of the connection created
$serverid = Get-RDBaseItemId -ItemPath $serverpath

#set the destination (address it connects to) to the same as the hostname
Set-RDPropertiesConnection -ItemId $serverid -Destination $servername


However, in our automation tool, when the connection to the environment is attempted, I am getting the following errors:

WARNING: Environment is not connected. Command could not be executed.Connect-RDEnvironment : Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application.



Any suggestions?

Verbindungen werden nicht mehr angezeigt

$
0
0
Hallo ASG Jungs,

ich habe seit ein paar Wochen das Problem dass diverse User die Verbinungsicons im VisionApp verlieren. Es kann sein dass die Serververbindung einen Tag nicht angezeigt wird und dann erscheint sie wieder. Wir haben Active Directory Gruppen auf den Servericons berechtigt. Der User ist in der Gruppe und alles stimmt. Im aktuellen Fall vor ein paar Tagen war der User in der Gruppe aber hat das Icon nicht gesehen. Sobald wir ihn direkt ohne Security Group berechtigt haben hat es funktioniert. Könnt ihr mir sagen warum das so ist?

Schöne Grüsse Markus

ASG 2018 - KeePass for Pleasant Password server

$
0
0
We're running Pleasant Password Server and using KeePass for Pleasant Password Server client.
Is there integration between ASG 2018 and KeePass for Pleasant Password Server?
Pleasant Password Server being the backend & KeePass for Pleasant Password Server being the frontend client.

Thanks

Which version of Internet Explorer

$
0
0
Hi,

I have a web console (Trend Micro ControlManager 7.0) that requires a rather new version of IE (or Chrome, or Edge), and doesn't support compatibility mode. I switched off compat mode in the settings, but when starting the connection, I get the message "Your browser is not supported. upgrade to the lastest version of Chrome, Edge, or Internet Explorer and turn off Compatibility View."

If I start IE directly, it works.

The computer has Internet Explorer version 11.2068.14393.0 installed, the components check in ASG RD says Installed version: 9.11.14393.0

Why is it using such an old version? How can it be fixed?

Regards,
Christian

Only Local domain available for login

$
0
0
We have a couple users that are not getting their private credentials or layouts when they log into asg.  After a bunch of comparing between them and "working" users we noticed that the local computer is the only domain available for selection, the domain the computer is a member of is not showing up.  Looking at the user list in ASG confirms that there are now new users <username>@<computername>.domain.local.  We are not seeing any new patches installed, it was a worked yesterday, didn't work this morning type incident.  ASG version is 10.1.5713.0.
Anyone else see this before?

ASG Verteilung und Einstellungen

$
0
0
Hallo ASG Team,

Wir arbeiten in unserer Firma mit der Softwareverteilung SCCM und sämtliche installierte Software muss paketiert werden. Ich habe diverse Anmerkungen und Fragen zum ASG Paket, da unser Install und Uninstall Script immer grösser wird. 

1. Gibt es irgendwo ein Installations Guide?
Was für Installations parameter gibt es, was sollte in welcher Version funktionieren.
Was für Registry Einstellungen gibt es, und in welcher Version funktionieren sie.

2. Jahreszahlen
Jahreszahlen im Pfad / Registry finde ich irgendwie überhaupt nicht praktisch. Dann lieber "C:\Program Files (x86)\ASG-Remote Desktop\Versionsnummer" auch in der Registry SOFTWARE\ASG\ASG-RemoteDesktop2018\. Wenn es Globale Einstellungen gibt dann will man diese nicht jedes mal neu scripten...

3. CleanUp Parameter
Geht ins gleiche Thema. Ich weis nicht wer das wirklich benötigt, sämtliche Versionen von ASG auf dem selben Rechner installiert. Aber es wäre gut gäbe es bei der Installationen einen CleanUp Parameter der alle älteren Versionen wegräumt. Unser Script wird immer grösser rein nur durch die Bereinigungstask (Uninstall X64, Uninstall X86, Ordner 2016, 2017, 2018 Version usw.)

4. Desktop Icon löschen
Installations Parameter das kein Desktop Symbol erstellt wird. In unserer Firma gibt es eine Policy. Keine Desktop Symbole, der Benutzer hat diese selbständig anzulegen in seinem Profil.

5. Globale Einstellungen in Registry
Ich habe im Forum einige gefunden, es ging aber um ältere ASG Versionen ob die im 2018 noch funktionieren weiss ich nicht oder haben bis jetzt noch nicht funktioniert.
- Menüs ausblenden
- Update Check beim Start unterdrücken -> Scheint es im 2015 zu geben, im 2018 geht es irgendwie nicht
- Kontext Menü ausblenden, vor allem "Administration" bzw. Reboot all (Helpdesk arbeitet auch mit ASG)



Vielen Dank für die Antworten.
Gruss

ASG 2018 Patch2 Thycotic Secret Server

$
0
0
Hi,

I am currently trying to setup Thycotic Secret Server integration with ASG 2018 Patch2. We have a fairly huge Secret Server installation, and it seems I am hitting some kind of maximum when trying to sync.
If I hit the "Syncronize now" button i get the following error:

Reading data from 'Thycotic Seret Server' failed.
the maximum message size quote for incoming messages (65536) has been exceeded. To increase the qouta, use the MaxReceviedMessageSize property on the appropriate binding element.

I already select only the subfolders I need, but it seems this is still too much to import. Is there a way to increase that MaxreceivedMessageSize property? Or is the only workaround to create multiple credential folders with each time a subset of my Secret Server folders to sync?

.png   Error.png (Size: 9.87 KB / Downloads: 0)

Rotate Connections Speed

$
0
0
the rotate connections speed is set for 2 sec. and it don't let me change it.
RemoteDesktop 2017 Version 10.1.5629.1

Unable to RDP to some servers

$
0
0
Hi,

I'm using Standard -ASG-Remote Desktop 2015 and unable to RDB to some servers. I get the following warning.
The remote computer <name> requires Network Level Authentication, which your computer does not support.

Please let me know if you aware of the issue.

Regards.
H R

.png   Capture.PNG (Size: 23.95 KB / Downloads: 0)

RDP not getting Default printer

$
0
0
Hi All,

I need some help as I'm pulling out my hair with this issue.
I am currently unable to pass through a default printer to a hosted service using ASG Remotedesktop.
I have attached the original.RDP file called HostedApp.txt using this connection a users default printer will pass through to the hosted system.
I have ticked the box to allow printers but still, no default printer is passed through

unsure what I'm missing, although I think my problem is related to being passed through a cluster.

any help would be appreciated.

Thanks
Jason

.txt   HostedApp.txt (Size: 1.35 KB / Downloads: 4)
Viewing all 1117 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>