2011年1月7日

目标:

   

   

   

*******************************************************************************

步骤

*******************************************************************************

  1. 备份bootstrap、index与NMC至磁盘,使用mminfo -av查找bootstrap的ssid
  2. 重新安装Windows Server 2003 Std SP2 32bit,确保计算机名相同
  3. 重新安装Networker服务器软件(7.6.0 32bit),配置磁盘驱动器,scanner -B扫描bootstrap的device,如 scanner -B D:\Disk.003
  4. 恢复bootstrap
    1. NetWorker守护进程正在运行
    2. 使用 scanner -B 确定媒体上bootstrap的ssid
    3. mmrecov
    4. 输入bootstrap的ssid
    5. nsr_shutdown
    6. 重命名当前/nsr/res目录,并将其替换为/nsr/res.R
    7. 重新启动 NetWorker 守护程序
  5. 重命名Netwroker的res目录(已整合到上步中)
  6. 恢复index
    1. nsrck -L7
  7. 恢复NMC
    1. 停止NMC
    2. recoverpsm -f(覆盖)
  8. 重新注册license,需到powerlink重新申请
  9. 验证index,及备份、恢复等

       

    为提高恢复速度,如果有条件,最近的备份尽量保留在磁盘上,否则恢复索引将花费较长时间

       

       

       

       

       

       

       

    *******************************************************************************

    资料

    *******************************************************************************

       

       

       

       

       

       

       

       

       

       

       

posted @ 2011-01-07 17:22 nicktang 阅读(106) 评论(0) 编辑

2010年12月9日

EMC NetWorker 7.5 SP2 now supports Exchange 2010

  

May 20, 2010

  

in 2010,Exchange,Microsoft

  

This provides early adopters of the new application with a basic protection option in advance of support planned for the next release of the NetWorker Module for Microsoft Applications

The new option is made available via a small NetWorker plug-in and an EMC Technical Note, and is supplemented by step-by-step backup and recovery instructions in the NetWorker Procedure Generator. With it NetWorker users gain:

  

  

Solution Information

  

The new solution is available for use with NetWorker 7.5 SP2 and requires the software plug-in and the NetWorker client software. For full details and download information, read the Microsoft Exchange 2010 Backup and Recovery Support with EMC NetWorker Technical Note.

  

UPDATE 10/20/2010: Version 1.1 build 128 released on 9/20/2010 technical note updated to A05.

  

Clipped on 9-December-2010, 6 : 12 PM from http://aspoc.net/archives/2010/05/20/emc-networker-7-5-sp2-now-supports-exchange-2010/

 

  1. 客户端安装Networker软件(Windows Server 2008 R2操作系统,安装7.5 SP2以上,或7.6 SP1)
  2. 拷贝可执行文件:在Exchange 2010客户端计算机上,拷贝可执行文件nsr_exchange2010.exe至C:\Program Files\Legato\nsr\bin ,下载地址:
  3. http://powerlink.emc.com/km/live1/en_US/Offering_Technical/Technical_Documentation/nsr_exchange2010.exe

    ftp.legato.com/pub/NetWorker/Updates/Exchange2010

  4. 服务器上自定义客户端Save Set设置:APPLICATIONS:\Microsoft Exchange 2010;APPLICATIONS:\Microsoft Exchange 2010\database_name(单个数据库);APPLICATIONS:\Microsoft Exchange 2010\volume: (单个分区)
  5. 服务器上自定义客户端备份命令:nsr_exchange2010
posted @ 2010-12-09 20:57 nicktang 阅读(84) 评论(0) 编辑

Password Reset Feature in Exchange 2007 and 2010

   

In many organizations, creating new mailbox enabled users includes checking the "User must change password at next logon" box on the account. From a security perspective, that makes sound sense. However, if the user is a mobile user and only signs in to OWA, this has been a problem, as checking the box would prevent the user from being able to log in the first time. The same problem exists if a user's password expires before they change it. The resolution is a call to the Help Desk to have the account unlocked.

   

Microsoft recently added a feature that helps aleviate this issue. When enabled, users are allowed to change their password and then login - thus eliminating the call to the Help Desk.

   

In Exchange 2007, the feature was added in SP3, while in Exchange 2010, it was added in SP1. One important note is that the feature only works in Exchange servers running on Windows 2008 or later.

   

Enabling the feature is very easy, and takes only a minute. For either version of Exchange, go to the server(s) holding the Client Access Server role and open regedit.

Navigate to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\MSExchange OWA

   

Create a new DWORD (32-bit) value called ChangeExpiredPasswordEnabled

Assign the new DWORD a value of 1 as shown below.

   

Note: If the ChangeExpiredPasswordEnable registry key already exists, set its value to 1. Any value other than 1 will disable the feature.

   

Restart IIS by opening a cmd prompt and typing IISRESET /NOFORCE.

   

Repeat this process for all Client Access Servers. Once finished, when a user logs in with an expired password, they are prompted with a new screen as shown in both Exchange 2007 (left) and Exchange 2010 (right) below:

   

   

Once the user enters a valid new password, they are shown the following screen:

   

Once the user clicks on "OK", they are prompted to login with their new password. Enjoy!

   

从 <http://www.ucblogs.net/blogs/exchange/archive/2010/11/08/Password-Reset-Feature-in-Exchange-2007-and-2010.aspx> 插

posted @ 2010-12-09 16:52 nicktang 阅读(48) 评论(0) 编辑

2010年12月6日

Return Code

The return code from Robocopy is a bit map, defined as follows:

Hex Bit Value

Decimal Value

Meaning If Set

0x10

16

Serious error. Robocopy did not copy any files. This is eithera usage error or an error due to insufficient access privilegeson the source or destinationdirectories.

0x08

8

Some files or directories could not be copied (copy errorsoccurred and the retry limit was exceeded). Check these errorsfurther.

0x04

4

Some Mismatched files or directories were detected. Examinethe output log. Housekeeping is probably necessary.

0x02

2

Some Extra files or directories were detected. Examine theoutput log. Some housekeeping may be needed.

0x01

1

One or more files were copied successfully (that is, new fileshave arrived).

0x00

0

No errors occurred, and no copying was done. The sourceand destination directory trees are completely synchronized.

 

 

You can use this information in a batch file to report the most serious anomalies, as

follows:

if errorlevel 16 echo ***FATAL ERROR*** & goto end

if errorlevel 8 echo **FAILED COPIES** & goto end

if errorlevel 4 echo *MISMATCHES* & goto end

if errorlevel 2 echo EXTRA FILES & goto end

if errorlevel 1 echo Copy successful & goto end

if errorlevel 0 echo --no change-- & goto end

:end

Alternatively, full details of the return code could be reported as follows:

if errorlevel 16 echo ***FATAL ERROR*** & goto end

if errorlevel 15 echo FAIL MISM XTRA COPY & goto end

if errorlevel 14 echo FAIL MISM XTRA & goto end

if errorlevel 13 echo FAIL MISM COPY & goto end

if errorlevel 12 echo FAIL MISM & goto end

if errorlevel 11 echo FAIL XTRA COPY & goto end

if errorlevel 10 echo FAIL XTRA & goto end

if errorlevel 9 echo FAIL COPY & goto end

if errorlevel 8 echo FAIL & goto end

if errorlevel 7 echo MISM XTRA COPY & goto end

if errorlevel 6 echo MISM XTRA & goto end

if errorlevel 5 echo MISM COPY & goto end

if errorlevel 4 echo MISM & goto end

if errorlevel 3 echo XTRA COPY & goto end

if errorlevel 2 echo XTRA & goto end

if errorlevel 1 echo COPY & goto end

if errorlevel 0 echo --no change-- & goto end

:end

posted @ 2010-12-06 09:57 nicktang 阅读(81) 评论(0) 编辑

2010年10月12日

So you want to change your expired passwords in OWA…

  

A while back, I posted What you need to know about the OWA Change Password feature of Exchange Server 2007, which higlighted a significant pain point — the loss of the IISADMPWD virtual directory as a supported feature in Windows Server 2008/IIS 7.0. This prevented web client users with expired passwords from being able to change their password and log on. This was a problem for manyOWA users — especially remote/mobile users with non-domain-joined computers.

  

Good news! Exchange Server 2010 Service Pack 1 and Exchange Server 2007 Service Pack 3 (running on Windows Server 2008 or Windows Server 2008 R2) have a new feature that will allow users with expired passwords to change their password. This also works for users who have their accounts configured to change password on next logon (User must change password at next logon in ADUC).

  

Use this procedure to enable it on Exchange 2007 SP3 and Exchange 2010 SP1 Client Access servers:

Note: If you are using a CAS Array, you must perform these steps on each CAS in the array.

  

Important: When changing passwords, users can't use a UPN (for example, johndoe@contoso.com) in the Domain\user name field in the Change Password window shown below.

  

  

That's it. No other steps are required.

  

Enjoy!

  

Reference: TechNet: How to Enable the Exchange 2007 SP3 Password Reset Tool

  

Will Duff

  

 

源文档 <http://msexchangeteam.com/archive/2010/10/06/456520.aspx>

 

posted @ 2010-10-12 10:51 nicktang 阅读(108) 评论(0) 编辑

2010年9月8日

大家都知道,一些传统的同步软件,均无法同步Open Files,例如:Robocopy。通常来讲,打开的文件意味着使用频率较高、更新较多、尤为重要,因此在备份时,这些文件绝对不可以忽视。这里介绍几个免费软件与方法,,收费的第三方备份软件自然不在讨论之列:
  1. hobocopy

    http://alt.pluralsight.com/wiki/default.aspx/Craig/HoboCopy.html

    作者作为兴趣而开发,基于VSS,可以用于备份自己的文件,不推荐用于重要信息的备份策略

  2. Robocopy+ Vshadow

    大家可以搜索相应文章

    http://www.eggheadcafe.com/tutorials/aspnet/f6972828-1e81-4cd4-ae0c-36196a82ed25/workstation-open-file-bac.aspx

    http://www.goodjobsucking.com/?p=62

    http://chang0206.wordpress.com/2010/02/08/%E7%AD%86%E8%A8%98-%E5%88%A9%E7%94%A8robocopy-vshadowdosdev-%E4%BE%86%E9%81%94%E6%88%90%E5%82%99%E4%BB%BDwindows-open-file-backup%E7%9A%84%E7%9B%AE%E6%A8%99/

  3. 直接使用Ntbackup

    这个就不用多做介绍了

posted @ 2010-09-08 16:09 nicktang 阅读(10) 评论(0) 编辑

2010年8月3日

摘要: Local Update Publisher    安装WSUS 3.2.7600.226 在上游服务器上安装Local Update Publisher 打开Local Update Publisher,会提示生成一个证书,或者导入一个 截图是下游服务器的证书,其实并没有意义,只是给大家看一下界面,可以将上游服务器的证书导出,以便使用。 配置组策略,所有使用WSUS更新第三方软件的客户端,及WS...阅读全文
posted @ 2010-08-03 22:55 nicktang 阅读(121) 评论(0) 编辑

2010年6月9日

摘要: Function Get-MSEInfo{ cnblogs 标签: mse,Microsoft Security Essentials,powershell,script,antivirus definition,monitor   trap{ break }   $computer = $args[0] $namespace = "root\DEFAULT" $HKLM = 2147483...阅读全文
posted @ 2010-06-09 21:42 nicktang 阅读(74) 评论(0) 编辑

2010年5月18日

摘要: SecurID fails after changing the Juniper Firewall IP configuration Knowledge Base ID:KB5273Version:3.0Published:07 Oct 2008 Updated:07 Oct 2008   Categories: Firewall/IPSec_VPN Screen...阅读全文
posted @ 2010-05-18 23:08 nicktang 阅读(123) 评论(0) 编辑
摘要: Powershell:System.Net.Mail.MailMessage #mail server configuration $smtpServer = "smtpServer" $smtpUser = "smtpUser" $smtpPassword = "smtpPassword " #create the mail message $mail = New-Object System.N...阅读全文
posted @ 2010-05-18 22:00 nicktang 阅读(417) 评论(0) 编辑
仅列出标题  

导航

公告

统计