Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

16 January 2016

Download File Dengan VBscript

dim xHttp: Set xHttp = createobject("Microsoft.XMLHTTP")
dim bStrm: Set bStrm = createobject("Adodb.Stream")
xHttp.Open "GET", "https://www.google.com/anu.exe", False
xHttp.Send
with bStrm
    .type = 1 '//binary
    .open
    .write xHttp.responseBody
    .savetofile "anu.exe", 2 '//overwrite
end with

Ganti anu.exe dengan anumu.exe

3 July 2015

You don't currently have permission to access this folder



CMD Run

TAKEOWN /F *  /R /D Y

TAKEOWN /F <DIRECTORY> /R /D Y



OR

icacls <directory> /grant <user>:f /t



http://clintboessen.blogspot.com/2013/05/you-dont-currently-have-permission-to.html
http://answers.microsoft.com/en-us/windows/forum/windows_8-files/you-dont-currently-have-permission-to-access-this/2cc4abe2-41ea-4023-b594-104c3b9e9f4d?auth=1

http://superuser.com/questions/60700/how-do-i-get-permissions-to-delete-files-on-windows-7

20 May 2015

google chrome standalone windows

google chrome standalone windows
offline installer
google chrome untuk satu user
download

18 May 2014

Ganti port SSL 443 xampp


Buka xampp control panel
pilih pada bagian config > Apache (httpd-ssl.conf)

















Find dan Replace port 443 dengan port yang akan digunakan misal 442
bisa menggunkan Notepad ++


















kemudian Start
untuk mengaksesnya https://hostname:442


LINUX

cd /opt/lampp/etc/extra/
nano /httpd-ssl.conf

Find dan Replace port 443
dan restart

/opt/lampp/lampp restart