portal.sivarajan.com Open in urlscan Pro
2a00:1450:4007:80d::2013  Public Scan

Submitted URL: http://www.sivarajan.com/
Effective URL: http://portal.sivarajan.com/
Submission Tags: falconsandbox
Submission: On September 14 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

GET /search

<form action="/search" id="searchform" method="get">
  <input id="s" name="q" onblur="if (this.value == &quot;&quot;) {this.value = &quot;Search&quot;;}" onfocus="if (this.value == &quot;Search&quot;) {this.value = &quot;&quot;;}" type="text" value="Search">
  <input class="search-image" src="http://1.bp.blogspot.com/-IscpV7KvsF0/TZ8gJlVRJaI/AAAAAAAAEKY/4TSTCFG_i4Y/s1600/search.png" title="Search" type="image">
</form>

Text Content

skip to main | skip to sidebar
 * Scripts






SANTHOSH SIVARAJAN'S BLOG

Microsoft Technology Blogs




 * Home
 * Scripts »
   * www.sivarajan.com
   * TechNet Gallery
 * Articles
 * Wiki
 * www.sivarajan.com
 * TechNet Forum
 * News and Views
 * Books
 * Projects


Subscribe
Follow Us!
Be Our Fan






SS TECHNOLOGY FORUM

SS Technology Forum


COMPUTER MIGRATION - THINGS TO CONSIDER

Here are a few points which you can consider while doing computer migration.
These points are applicable to all migrations irrespective of the migration tool
(ADMT, NetIQ, Quest etc)


ACTIVE DIRECTORY USER MIGRATION

Here is a graphical representation of the high level steps involved in an Active
Directory migration using ADMT


USER MIGRATION AND MERGING USING QUEST MIGRATION MANAGER

Pre-creating user account in the target domain is a common scenario these days
due to single-sign-on solution, HR management procedure etc


MICROSOFT RIGHT MANAGEMENT SERVICE (RMS)

Rights Management Service (RMS) is an add-on to many RMS aware applications. In
this article my main focus is to explain how we can utilize RMS technology with
Exchange 2003 and how we can take advantage of RMS technology to increase the
email security


MICROSOFT ISA SERVER

I am sure we have all either encountered or heard of this "problem" one time or
another if the ISA Server is part of the Active Directory Domain. Is it a
problem?

123456


FRIDAY, MARCH 30, 2018


POWESHELL TTUC (TIPS, TRICKS AND USEFUL COMMANDS) #114 – MOVE FILES AND FOLDERS


Friday, March 30, 2018 2:00 AM  Unknown  96 comments

PowerShell TTUC (Tips, Tricks and Useful Commands) - #114 Create a folder and
assign appreciate permission using PowerShell $OutputLocation =
"C:\Temp\Folder1" $adminUser = "Domain\Admin1" # if (-not(test-path
$OutputLocaiton))  #verify the existance of "C:\Temp\Folder1" fodler {     #if
not create a new folder     New-Item -ItemType directory -Path $OutputLocaiton |
out-null     $cACL = Get-Acl $OutputLocaiton     $nACL = New-Object 
system.security.accesscontrol.filesystemaccessrule($adminUser,"Fullcontrol","Allow")
    $cACL.SetAccessRule($nACL)     Set-Acl $OutputLocaiton $cACL } Reference
-  How to Handle NTFS Folder Permissions, Security Descriptors and ACLs in
PowerShell...
Read More








MONDAY, MARCH 26, 2018


UPDATE GROUP MEMBERSHIP – POWERSHELL SCRIPT


Monday, March 26, 2018 2:00 AM  Unknown  36 comments

If you have multiple domains or performing a user or group migration, you may
need to manually update (depend on your scenario) the source or target group
membership.  This script can be used to update group membership based on source
user’s group membership.  The input for this script the user name
(sAMAccountName) and it assumes that the source and target sAMAccountName are
the same.  Input file (Users.csv) Format: Script validates users in the source
domain and collect “memberof” details and then add the target user (migrated
user) to the same group. At the end of the operation, the source...
Read More








FRIDAY, MARCH 23, 2018


GROUP MEMBERSHIP REPORT – POWERSHELL SCRIPT


Friday, March 23, 2018 2:00 AM  Unknown  91 comments

Another “Group Membership Report” script.  You can see some of the previous
versions here -
http://portal.sivarajan.com/2010/08/list-group-members-in-active.html. This
script provides the group membership details based on user name.  You can
include all user names in an input file (Users.csv) in the following format:
Script uses Get-ADUser cmdlet to validate the user first then get the user
membership using the “memberof” properties.  Output/report will be in the
GMReport_$Cdate.csv file.  Error message will be captured in Error_$Cdate.csv
file. Script: # #Group Membership Report – PowerShell...
Read More








FRIDAY, DECEMBER 22, 2017


ADVANCED THREAT ANALYTICS–ATTACK SIMULATION AND DEMO – PART1


Friday, December 22, 2017 2:00 AM  Unknown  44 comments

Advanced Threat Analytics–Attack Simulation and Demo–Part1 Advanced Threat
Analytics–Attack Simulation and Demo–Part2 Advanced Threat Analytics–Attack
Simulation and Demo–Part3 Microsoft Advanced Threat Analytics (ATA) is an user
and entity behavior analytics solution to identify and protect protect
organizations from advanced targeted attacks (APTs).  You can read more
information about Microsoft Advanced Threat Analytics (ATA) here.  The purpose
of this blog is to provide a few methods which can be used to simulate and
demonstrate some of the basic attacks for demo and testing purpose. Suspicious
Activity Simulation #1 – ATA...
Read More








SATURDAY, NOVEMBER 11, 2017


CONFIGURING DEEPNET SECURITY SAFEID OATH TOKEN WITH MICROSOFT AZURE MFA SERVER


Saturday, November 11, 2017 2:00 AM  Unknown  33 comments

Related Blogs: Configuring YubiKey / Yubico OATH Token with Microsoft Azure MFA
Server - http://portal.sivarajan.com/2016/06/configuring-yubikey-yubico-oath-token.html
Azure MFA with pGina and Local
Authentication - http://portal.sivarajan.com/2015/09/azure-mfa-with-pgina.html
Azure MFA Server –Authentication Types (Part
I) - http://portal.sivarajan.com/2016/05/azure-mfa-serverauthentication-type.html
Azure MFA Server –Authentication Types (Part
II) - http://portal.sivarajan.com/2016/06/azure-mfa-server-authentication-type.html
Microsoft Azure MFA on-premises server supports a time based OATH (OATH...
Read More








FRIDAY, OCTOBER 13, 2017


CONFIGURING YUBIKEY / YUBICO OATH TOKEN WITH MICROSOFT AZURE MFA SERVER


Friday, October 13, 2017 2:00 AM  Unknown  47 comments

Related blogs: Configuring Deepnet Security SafeID OATH Token with Microsoft
Azure MFA Server 
- http://portal.sivarajan.com/2016/07/configuring-deepnet-security-safeid.html
Azure MFA with pGina and Local Authentication
- http://portal.sivarajan.com/2015/09/azure-mfa-with-pgina.html Azure MFA Server
–Authentication Types (Part I)
- http://portal.sivarajan.com/2016/05/azure-mfa-serverauthentication-type.html
Azure MFA Server –Authentication Types (Part II)
- http://portal.sivarajan.com/2016/06/azure-mfa-server-authentication-type.html
Microsoft Azure MFA on-premises server supports a time based OATH (OATH – TOTP)
third...
Read More






Page 1 of 6312345Next



POPULAR POSTS

 * ADMT Service Account - Permission and Configuration
   The ADMT service account needs to have proper permission in source and target
   domains.  You don’t need to use 2 separate accounts.  You can ...
 * Workstation Trust Relationship Issue
   Issue: You receive the following error message, when you try to login to the
   domain.  The security database on the server does not have ...
 * AD Group Report - List Group Members in Active Directory–PowerShell Script
   Updated Script -
   http://portal.sivarajan.com/2011/10/search-ad-collect-local-admin-group.html
   Script #1 This script...
 * ObjectSID and Active Directory
   What is an objectSID in Active Directory? When a new object is created in
   Active Directory, Domain Controller assigns a unique value used ...
 * Add Users to a Group–PowerShell Script
   Purpose – Add users to a group from an input file – PowerShell V2 Script. 
   Input file – Input file (Users.csv) contains samAccountName in...
 * User Account Migration and Merging – Part I (ADMT)
   Part I - User Account Migration and Merging Using ADMT Part II - User Account
   Migration and Merging Using QMM pre-creating user account ...
 * My First Peek into Microsoft Exchange 2010 By Santhosh Sivarajan
   Before I really dive into Exchange 2010, I thought I would install and play
   with it first. I took some screen shots and notes during the ins...
 * User Account Migration and Merging – Part II (Quest Migration Manager)
   Part I - User Account Migration and Merging Using ADMT Part II - User Account
   Migration and Merging Using QMM Pre-creating user account in...
 * Delete Stale or Inactive Computer Accounts from Active Directory
   Here is an easy way to identify and delete inactive or stale computers in an
   Active Directory environment.  Using the dsquery command you c...
 * Converting PowerShell (PS1) to EXE / Standalone Application
   As we know, there many applications available to convert a PowerShell file to
   a standalone executable file.  Based on my experience, PowerSh...




SHARE



 * Videos
 * Tags
 * Blog Archives


EMAIL SUBSCRIPTION

Subscribe to Santhosh Sivarajan’s Blogs by Email



 * The article Azure Migrate: Server Migration Overview on the TechNet Wiki is
   pulling away from the pack. Way to go!
 * The article Wiki: Vorlagen für die Umwandlung von Forenbeiträgen in
   Wiki-Artikel (de-DE) on the TechNet Wiki has achieved its 15 minutes of fame.
   Congratulations!
 * The article Microsoft Azure Service Portal Details on the TechNet Wiki is
   pulling away from the pack. Way to go!
 * The article Azure Migrate: Server Migration Overview on the TechNet Wiki is
   pulling away from the pack. Way to go!
 * The article Glossary - Keyboard Shortcuts and Commands on the TechNet Wiki
   has possibly gone viral. This is full of win!







 

Copyright © 2011 Santhosh Sivarajan's Blog | Powered by www.sivarajan.com This
posting is provided AS IS with no warranties,and confers no rights.
https://www.shenghaiautoparts.com/shop/switch/4270026500-4270026000-neutral-safety-switch-inhibitor-for-hyundai-accent-elantra-sonata-kia-optima-rio/
www.shenghaiautoparts.com
https://www.fimkastore.com/en/
www.fimkastore.com
https://pendragonlaw.co.uk/
pendragonlaw.co.uk
https://donghosk.com/kien-thuc/dong-ho-quartz-la-gi/
donghosk.com
https://redessay.com/
redessay.com
https://globalmedpharmacy.co/shop/anti-anxiety-medication/buy-diclazepam-powder/
globalmedpharmacy.co
https://all888.net/2018/02/10/%E3%80%90%E7%82%AB%E6%B5%B7%E5%A8%9B%E6%A8%82%E5%9F%8E%E3%80%91%E8%BC%AA%E7%9B%A4%E4%B8%89%E5%A4%A7%E6%8A%80%E5%B7%A7-%E5%A4%A7%E5%85%AC%E9%96%8B-%E5%A4%A7%E5%A4%A7%E5%A2%9E%E5%8A%A0%E5%8B%9D%E7%8E%87/
all888.net
pgฝากไม่มีขั้นต่ํา
pgslot3650.com
getting into the weed business
www.hempstaff.com
https://jokerslotxovip.com/
jokerslotxovip.com
https://www.mtka.com/
www.mtka.com
https://vayyip.ae/products/uwell-caliburn-11w-pod-system
vayyip.ae
implantes de cabello en peru
www.microfue.es
epidermal growth factor in cosmetics
www.oryzogen.net
https://markscottassociates.com/
markscottassociates.com
retargeting mailchimp
automatedremarketing.com
https://eventscoupons.com/store/schema-pro-coupon-codes/
eventscoupons.com
https://serapbilgen.com.tr/
serapbilgen.com.tr
https://icemodz.com/ps4/account-boost/
icemodz.com
洗碼英文
dbi88.gr66.net
buy truffles
trufflecart.com
moneta artech stone
cookwaresetspro.com
easimp3
easimp3.com
cctv installer in delhi
zeyeonline.com
alitove 16.4ft ws2812b individually addressable led strip light 5050 rgb smd 150
pixels dream color waterproof ip66
sourceforleds.com
backlink analysis free tools
chrome.google.com




Diese Website verwendet Cookies von Google, um Dienste anzubieten und Zugriffe
zu analysieren. Deine IP-Adresse und dein User-Agent werden zusammen mit
Messwerten zur Leistung und Sicherheit für Google freigegeben. So können
Nutzungsstatistiken generiert, Missbrauchsfälle erkannt und behoben und die
Qualität des Dienstes gewährleistet werden.Weitere InformationenOk