Is there a chance to start an independent script from a normal logon script?
The logon script maps network drives, printers and other stuff like inventory.
The logon scripts run synchronously (GPO) and it takes time. The explorer.exe waits until the scripts are ending.
My idea is to open another cmd and call the inventory script, because this takes the most of time. I tried the command “run” (RUN does not wait for the program to complete. Script execution continues immediately) but it didn’t work.
The logon script always waits of then end of the inventory.bat

Logon script Example:

Use h:
Addprinterconnection(…..)
Run @Lserver+"\netlogon\Inventory.bat”


What else can I try?