Showing posts with label sync. Show all posts
Showing posts with label sync. Show all posts
Sunday, May 20, 2018
Tech Notes :- Making Google Drive Available As A Windows Drive
It is always a convenience to have your Google Drive available as a drive in your Windows Explorer. Here are the steps to configure your Google Drive in windows and then having it as a drive in your windows explorer
Download Google drive software(Backup and Sync) for Windows from below link
https://www.google.com/drive/download/
Install it and configure the folder to be Synced say E:\Google Drive
Once you select the folder to be synced, the contents of the folder will be synced with google drive
Now download a software called Visual Subt from below link or any trusted link
https://download.cnet.com/Visual-Subst/3055-2248_4-10598834.html?tag=pdl-redir
Launch Visual Subst and then map the folder that you have selected for syncing(say E:\Google Drive) with Google Drive.
Now you should be able to see an additional drive in My Computer which is the local folder synced with Google Drive. It's that simple!
Friday, July 23, 2010
Tech Notes- IIS-Checking As Well As Synching Password For IUSR & IWAM Accounts

Usually the IUSR_ and IWAM_ passwords are set automatically and are never known. However, I've seen cases in which for some reason the passwords get out of sync or corrupted and need to be reset. The easiest way to reset these passwords is to extract the passwords that Microsoft IIS has in its metabase and update the accounts in Local Users and Groups to use that password.
To accomplish this you first need to update the adsutil.vbs script, which you'll find in the AdminScripts folder under the Inetpub folder, to display sensitive information (e.g., passwords) in plain text.Open the adsutil.vbs file in Notepad and search for the text "IsSecureProperty = True", replace this text with "IsSecureProperty = False" and save the file
Now run the following commands to return the passwords in plain text
/anonymoususerpass is the IUSR account
/wamuserpass is the IWAM_ account
C:\Inetpub\AdminScripts>cscript adsutil.vbs get w3svc/anonymoususerpass
Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
anonymoususerpass : (STRING) "bv6iC9d|liM)`y"
C:\Inetpub\AdminScripts>cscript adsutil.vbs get w3svc/wamuserpass
Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
wamuserpass : (STRING) "9oAFA"L8|HD2Kl"
Now you have two options.Either you can set the password for users IUSR account and IWAM_ account in Local Users and Groups same as above or if you have already set the password in Local Users and Groups set the same passwords in IIS metabase using the following commands
C:\Inetpub\AdminScripts>cscript adsutil.vbs set w3svc/anonymoususerpass "Password123"
Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
anonymoususerpass : (STRING) "Password123"
C:\Inetpub\AdminScripts>cscript adsutil.vbs set w3svc/wamuserpass "Passw0rd"
Microsoft (R) Windows Script Host Version 5.6
Copyright (C) Microsoft Corporation 1996-2001. All rights reserved.
wamuserpass : (STRING) "Passw0rd"
You should now run the command below to sync the password from IIS with Microsoft Transaction Server (MTS) and component services
C:\Inetpub\AdminScripts>cscript.exe synciwam.vbs -v
IIS Applications Defined:
Name, AppIsolated, Package ID
Now just reset IIS using the iisreset command
Now run the following commands to return the passwords in plain text
C:\Inetpub\AdminScripts>cscript adsutil.vbs get w3svc/anonymoususerpass
anonymoususerpass : (STRING) "bv6iC9d|liM)`y"
C:\Inetpub\AdminScripts>cscript adsutil.vbs get w3svc/wamuserpass
wamuserpass : (STRING) "9oAFA"L8|HD2Kl"
Now you have two options.Either you can set the password for users IUSR account and IWAM_ account in Local Users and Groups same as above or if you have already set the password in Local Users and Groups set the same passwords in IIS metabase using the following commands
C:\Inetpub\AdminScripts>cscript adsutil.vbs set w3svc/anonymoususerpass "Password123"
anonymoususerpass : (STRING) "Password123"
wamuserpass : (STRING) "Passw0rd"
You should now run the command below to sync the password from IIS with Microsoft Transaction Server (MTS) and component services
C:\Inetpub\AdminScripts>cscript.exe synciwam.vbs -v
Now just reset IIS using the iisreset command
Labels:
adminscripts,
anonymoususerpass.,
groups,
IIS,
iisreset,
inetpub,
IsSecureProperty,
IUSR,
IWAM,
local,
Microsoft,
sync,
users,
wamuserpass
Subscribe to:
Posts (Atom)
