Soluții

How to Secure Chrome Sync With a Custom Sync Passphrase

Chrome’s cross-device sync feature is one of the things that makes it so popular, but it’s not without problems. You may not like Google having all your browser data, for example. Thankfully, you can encrypt your synced data by adding a passcode.

Here’s all the information that Chrome saves to your Google account with sync enabled:

  • Bookmarks
  • History and open tabs
  • Passwords
  • Payment info
  • Names, addresses, and phone numbers
  • Settings and preferences

This data is all backed up to your Google account, which means that the search giant has access to it as well. You can create a Sync Passphrase to encrypt this data so that Google can’t read it.

[mai mult...]

Cum putem executa un batch file cu VBScript si HTA

Pasul 1

Copiem urmatorul cod intr-un editor de text:

<html>
<head>
<title>Ruleaza un exe sau batch file cu VBScript si HTA</title>
<HTA:APPLICATION
APPLICATIONNAME=”Ruleaza un exe sau batch file cu VBScript si HTA”
ID=”MyHTMLapplication”
VERSION=”1.0″/>
</head>
<script language=”Vbscript”>
Function RunMe()
Dim Shell,path
Set shell = CreateObject(“WScript.Shell”)
path = “file:///E:/Users/Desktop/hello.bat”
shell.run path,1,false
End Function
</script>
<input style=”width: 170px; height:23px; color: white; background-color: #203040;
font-family:Book Antiqua;” type=”button” Value=”Execute Batch File” onClick=”RunMe()”
</html>

Modificam calea programului pe care dorim sa il executam (path)

Pasul 2

Salvam fisierul cu numele dorim si extensia .hta

[mai mult...]

Cum putem executa un batch file folosind Javascript si HTA

Cum putem executa un batch file sau un executabil folosind Javascript si HTA

Pasul 1

Copiem urmatorul cod intr-un editor de text

<html>
<head>
<title>Ruleaza un exe sau batch file cu Javascript si HTA</title>
<HTA:APPLICATION
APPLICATIONNAME=”Ruleaza un exe sau batch file cu Javascript si HTA”
ID=”MyHTMLapplication”
VERSION=”1.0″/>
</head>
<script language=”Javascript”>
function RunMe(){
var shell = new ActiveXObject(“WScript.Shell”);
var path = ‘”file:///E:/Users/Desktop/hello.bat”‘;
shell.run(path,1,false);
}
</script>
<input style=”width: 170px; height:23px; color: white; background-color: #203040;
font-family:Book Antiqua;” type=”button” Value=”Execute Batch File” onClick=”RunMe();”
</html>

Pasul 2

Modificam calea programului pe care dorim sa il executam (var path)

Pasul 3

Salvam fisierul cu numele dorim si extensia .hta

[mai mult...]