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
Nerd in IT and provide you as much as IT solution. You may send requests to itweirdo@gmail.com. Thanks for support =)
Thursday, March 6, 2014
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
$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
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
3) In the navigation pane, find the one that starts with S-1-5..... and ends with .BAK




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
Subscribe to:
Posts (Atom)