Tag Archives: information

Office IT Pro: Deployment scripts for Office 2016


Le Café Central de Deva - Deva blogs

To help IT pros with Office client deployments using PowerShell to streamline the process we created a community project.  It contains all of the scripts on our GitHub repository in five categories:

Preparation
Information
Deployment
Management
Updates

image

Also please visit the related Wiki, which contains useful information designed to provide context for using these scripts in real-world situations. So its your go-to source for all information related to Office IT pro deployment scripts. It holds information explaining completed scripts, upcoming scripts and general information around contributing to the project. You are invited to contribute to the Office IT Pro deployment scripts GitHub Project; also you can get more information here and https://github.com/OfficeDev/Office-IT-Pro-Deployment-Scripts/wiki/Contribute.

Make use of this project and take advantage of these scripts Smile

Exchange VSS : At Exchange Server 2010 ESEUtil fails with Jet error–1032


Recently I was playing for a VSS issue at my Exchange Server 2010 environment – when I run the ESEUtil (with its parameter /mh) command then I got the error “Jet error –1032”.

> eseutil /mh "D:Temptempdb.edb"
Extensible Storage Engine Utilities for Microsoft(R) Exchange Server Version 14.00
Copyright (C) Microsoft Corporation. All Rights Reserved.
Initiating FILE DUMP mode…
Error: Access to source database ‘D:Temptempdb.edb’ failed with Jet error -1032.

The error code –1032 points to JET_ERRFileAccessDenied, which tells us that I cannot access the file, as the file is locked or in use. This is the first time I noticed the issue at my end. When I investigated further I realized the issue – I have mounted the database and ran the ESEUtil. The database needs to be offline to read the header information. So I dismounted the database and ran the ESEUtil worked like a charm – bingo!!

Happy debugging!!