
24th October 2012
|
 |
Ceriwiser
|
|
Join Date: Oct 2012
Posts: 467
Rep Power: 13
|
|
"cafesuite 3.50.2" the best internet cafe billing
[/quote]
Quote:
Tutorial Instalasi (Credit & thanks to reges @ warneter wikipedia):
|
Quote:
Originally Posted by Warlock1981

here's another working way to block cafegate.com portal
- Download NIRCMD---> www.nirsoft.net/utils/nircmd.zip
- Extract the contents to C:\WINDOWS
- Open a notepad and type this command below
Code:
nircmd.exe killprocess firefox.exe
- Save it as cafegate.cmd and place it inside the C:\Program Files\CafeAgent
- Now on your CafeStation Click
Code:
Program>Client Setup>Automation>Start
- Check Execute Program and type the path below
Code:
C:\Program Files\CafeAgent\cafegate.cmd
- Click Ok and Update the CafeAgent in all client workstations
- so when the time was started, the default browser firefox process will be killed or terminated
- if your default browser is internet explorer just change it to iexplore.exe
- if your default browser is google chrome just change it to chrome.exe
|
Quote:
Originally Posted by Warlock1981

here's another working way to bring back the screen resolution to default after a customer time is over and the screen resolution was change to lower resolution made by a game he/she plays
- Download NIRCMD---> www.nirsoft.net/utils/nircmd.zip
- Extract the contents to C:\WINDOWS
- Open a notepad and type this:
Code:
nircmd.exe setdisplay 1280 1024 32
- Save it as resolution.cmd and place it inside the C:\Program Files\CafeAgent
- Now on your CafeStation Click
Code:
Program>Client Setup>Automation> End
- Check Execute Program and type the path below
Code:
C:\Program Files\CafeAgent\resolution.cmd
- Click Ok and Update the CafeAgent in all client workstations
- so when the customer's time is over and if you free computer, the resolution goes back to default
legend:- 1280 1024 - screen resolution of your monitor, you have to put the reoslution according to your screen monitor default resolution
- 32 - is the bit of the resolution (recommended)
|
[quote]
Originally Posted by Warlock1981
to those cafesuite users who are having problems with the screen resolution if a customer's time is over during playing a full screen game, here's a better solution to restore the default screen of your monitor
- first download Qres.exe (freeware) a tool that will change your screen resolution according to your setup and save it or extract to C:\Program Files\CafeAgent
- copy and paste the script below to your notepad and save it to C:\Program Files\CafeAgent with a filename of resolution.vbs
- in the script below just replace the value of
Code:
res1= "1024 x 768"
res2= "1024 x 768"
according to the screen resolution of your monitor
Code:
'Toggles resolutions between the following settings
res1= "1024 x 768"
res2= "1024 x 768"
'Initialization
set WshShell = WScript.CreateObject("WScript.Shell")
'Process the resolutions
res1=trim(lcase(res1))
res2=trim(lcase(res2))
xres1=trim(left(res1,instrrev(res1,"x")-1))
yres1=trim(mid(res1,instrrev(res1,"x")+1))
xres2=trim(left(res2,instrrev(res2,"x")-1))
yres2=trim(mid(res2,instrrev(res2,"x")+1))
'Get current resolution
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery _
("Select * From Win32_DisplayConfiguration")
For Each objItem in colItems
currentXRes = trim(objItem.PelsWidth)
currentYRes = trim(objItem.PelsHeight)
Next
'Decide which resolution to set
if (currentXRes = xres1) and (currentYRes = yres1) then
xres = xres2 : yres = yres2
else
xres = xres1 : yres = yres1
end if
'Run the command to set the resolution
runstring = "cmd /c " & chr(34) & "qres.exe /x:" & xres & " /y:" & yres & chr(34)
wshshell.run runstring,0
- Now on your CafeStation Click
Code:
Program>Client Setup
Code:
Automation> End
- Check Execute Program
Code:
C:\Program Files\CafeAgent\resolution.vbs
- Click Ok and Update the CafeAgent in all client workstations
- so when the customer's time is over and if you free computer, the resolution goes back to default
- by the way it works 100%
- enjoy cafesuite users ^_^
|