lahauniversity.blogg.se

Quick assist app
Quick assist app









quick assist app

:: set path to current directory cd "%~dp0" :: VARIABLES set dynamic = 1 set static = 1 set numMon = 1 :: HOW MANY MONITORS DOES USER HAVE? for /F %%a in ( 'wmic path Win32_PnPEntity where "Service='monitor ' and Status='OK '" get DeviceID /VALUE ^| find /C "="') do set numMon = %%a :: kill current quickassist

quick assist app

Something to think about, not only do you need to prevent the windows from appearing, but you also need to make sure the Pause function continues to work echo off SETLOCAL ENABLEDELAYEDEXPANSION This is how I prevent window 1, and then go on to control windows 2 and 3. exe, the prompt defaults to ‘Enter Code’ (awesome).Ĭontrolling the general flow of Quick Assist Note, /Q can be anything…once there is a single character after the. Launch Quick Assist, skipping ‘Give Assistance’ Wmic /interactive:off process where “name like ‘quickassist.exe'” call terminate If I figure that out, I’ll post the code. * I will also be throwing this into WinDbg and IDA Pro, to see if I can remove the windows via assembly. If you’d like to look at ports, ProcMon and netstat can help. I did tinker with TCP ports for a bit, because QA uses specific ports, but moved on to simpler, faster methods. The two main attributes that helped me control the app were memory utilization and app path. How do you get rid of extra windows in Quick Assist, when Microsoft provides no methods or documentation to developers? You ProcMon it…and watch what the app is doing.

quick assist app

If you want the documented portions of Quick Assist, see Demo or FAQs. Much of this is undocumented, and things I just figured out on my own. Perhaps this will help you in your implementation of Quick Assist. At least provide methods to configure the windows. I’m not sure why Microsoft does this they create some good tech, and then bog it down with needless extra windows and clicks. Microsoft Quick Assist is a Windows 10 app that enables two people to share a computer over a remote connection so that one person can help solve problems on the other person’s computer.Īfter reading the documentation, I realized there were no configurable features or options.











Quick assist app