Thursday, March 6, 2014

MSServer 2008R2 : Window ServerBackup - wbengine.exe crashed

Faulting application name: wbengine.exe, version: 6.1.7601.17514, time stamp: 0x4ce79951
Faulting module name: wbengine.exe, version: 6.1.7601.17514, time stamp: 0x4ce79951
Exception code: 0xc0000005
Fault offset: 0x000000000011341b
Faulting process id: 0x15ec
Faulting application start time: 0x01cf382bd173e7ab
Faulting application path: C:\Windows\system32\wbengine.exe
Faulting module path: C:\Windows\system32\wbengine.exe
Report Id: b7f8df20-a41f-11e3-b3bc-5cf3fc56648c

run the command>Wbadmin delete catalog


Remember take note of the backup schedule details before pressY




Wednesday, February 19, 2014

MS Office365: Bulk Change Password

$LiveCred = Get-Credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection

Import-PSSession $Session

Connect-msolservice

Get-msoluser | set-msoluserpassword -newpassword Pass1234 -forcechangepassword 0

change all password to  Pass1234, does not require to change at next logon


$LiveCred = Get-Credential

$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection

Import-PSSession $Session

Connect-msolservice

Import-Csv c:\screen\password.csv|%{Set-MsolUserPassword -userPrincipalName $_.UserPrincipalName -NewPassword Pass1234 -ForceChangePassword $false}

CSV file one column 1 field

change all password to Pass1234 from a list of specify user, does not require to change at next logon



Friday, January 24, 2014

Visual CertExam Suite 3.4.2 with Crack (Full Download)


Hey guys,

Looking for latest Visual CertExam Suite 3.4.2

Here is the download link: LINK1 LINK2

Official Website Download Link: Link



Reference: Link1 Link2




Monday, January 20, 2014

MS Office365:Set mailbox size limits for a single user

$UserCredential = Get-Credential
 
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
 
Import-PSSession $Session
 
Set-Mailbox <userid> -ProhibitSendQuota 4.8GB -ProhibitSendReceiveQuota 5GB -IssueWarningQuota 4.7GB

Remove-PSSession $Session

Tuesday, March 12, 2013

[Solution] "The User Profile Service failed the logon” error message



Before proceed to solution,
PLEASE login to administrator account


Solution:

1) Click Start, type regedit in Search box, then hit ENTER
2) In Registry Editor, locate ProfileList by following registry path
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList

3) In the navigation pane, find the one that starts with S-1-5..... and ends with .BAK
4) Click each S-1-5 folder, locate the ProfileImagePath entry in the details pane, and then double-click to make sure that this is the user account profile that has the error.



5) Right-click the folder without .bak, and then click Rename. Type .ba


6) Right-click the folder that is named .bak, and then click Rename. Remove .bak at the end of the folder name.



7) Right-click the folder that is named .ba, and then click Rename. Change the .ba to .bak at the end of the folder name



8) Double-click the folder without .bak in the details pane, double-click RefCount, type 0, and then click OK.


9) Click the folder without .bak, in the details pane, double-click State, type 0, and then click OK.



10) Close Registry Editor and restart computer. Then login to your account.



Hope it can solve your issue. =)


Reference:
http://support.microsoft.com/kb/947215
http://answers.microsoft.com/en-us/windows/forum/windows_7-security/i-receive-error-message-the-user-profile-service/38844b82-a2c1-4fa2-9802-a5318d6f7831
http://www.sevenforums.com/tutorials/186131-user-profile-service-failed-logon-user-profile-cannot-loaded.html


Related Posts Plugin for WordPress, Blogger...