Question : QuickBbooks and Hamachi VPN

I am having issues with trying to get QuickBooks and Hamachi to work.  I know it’s best to user remote control; I have reasons on why I’m going this route.
I have everything working and I can open files and map a network drive without any issues.
I have QuickBooks Multi user it’s enabled.
When I run QuickBooks connect diagnostics tool it says file is not writeable
I made sure it’s not read only. What more can I do?
Would a real hardware VPN work best?
Thank you

Answer : QuickBbooks and Hamachi VPN

Download DumpSec (http://www.systemtools.com/somarsoft), install the download on an XP machine, uncheck "Hyena"; then copy DumpSec.exe and the help file into the folder with the script below.
In the script, specify the path and name of the input file and the output file; the script will generate a comma separated file which you can import into Excel and process there.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
@echo off
setlocal
set ServerFile=test.txt
set ResultFile=test.csv

set DumpsecFile=%~dpn0.tmp
if exist "%ResultFile%" del "%ResultFile%"
for /f "tokens=1" %%a in ('type "%ServerFile%"') do call :process %%a
goto :eof

:process
set Server=%~1
echo Processing %Server% ...
dumpsec /computer=\\%Server% /rpt=rights /outfile=%DumpsecFile% /saveas=csv /noheader
for /f "tokens=1,2 delims=," %%a in ('type "%DumpSecFile%" ^| findstr "SeBatchLogonRight SeServiceLogonRight"') do (
  >>"%ResultFile%" echo "%Server%","%%a","%%b"
)
Random Solutions  
 
programming4us programming4us