| ile extension |
File type |
MIME type |
| .docx |
Microsoft Office Word 2007 document |
application/vnd.openxmlformats-officedocument.wordprocessingml.document |
| .docm |
Office Word 2007 macro-enabled document |
application/vnd.ms-word.document.macroEnabled.12 |
| .dotx |
Office Word 2007 template |
application/vnd.openxmlformats-officedocument.wordprocessingml.template |
| .dotm |
Office Word 2007 macro-enabled document template |
application/vnd.ms-word.template.macroEnabled.12 |
| .xlsx |
Microsoft Office Excel 2007 workbook |
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet |
| .xlsm |
Office Excel 2007 macro-enabled workbook |
application/vnd.ms-excel.sheet.macroEnabled.12 |
| .xltx |
Office Excel 2007 template |
application/vnd.openxmlformats-officedocument.spreadsheetml.template |
| .xltm |
Office Excel 2007 macro-enabled workbook template |
application/vnd.ms-excel.template.macroEnabled.12 |
| .xlsb |
Office Excel 2007 binary workbook |
application/vnd.ms-excel.sheet.binary.macroEnabled.12 |
| .xlam |
Office Excel 2007 add-in |
application/vnd.ms-excel.addin.macroEnabled.12 |
| .pptx |
Microsoft Office PowerPoint 2007 presentation |
application/vnd.openxmlformats-officedocument.presentationml.presentation |
| .pptm |
Office PowerPoint 2007 macro-enabled presentation |
application/vnd.ms-powerpoint.presentation.macroEnabled.12 |
| .ppsx |
Office PowerPoint 2007 slide show |
application/vnd.openxmlformats-officedocument.presentationml.slideshow |
| .ppsm |
Office PowerPoint 2007 macro-enabled slide show |
application/vnd.ms-powerpoint.slideshow.macroEnabled.12 |
| .potx |
Office PowerPoint 2007 template |
application/vnd.openxmlformats-officedocument.presentationml.template |
| .potm |
Office PowerPoint 2007 macro-enabled presentation template |
application/vnd.ms-powerpoint.template.macroEnabled.12 |
| .ppam |
Office PowerPoint 2007 add-in |
application/vnd.ms-powerpoint.addin.macroEnabled.12 |
| .sldx |
Office PowerPoint 2007 slide |
application/vnd.openxmlformats-officedocument.presentationml.slide |
| .sldm |
Office PowerPoint 2007 macro-enabled slide |
application/vnd.ms-powerpoint.slide.macroEnabled.12 |
| .one |
Microsoft Office OneNote 2007 section |
application/onenote |
| .onetoc2 |
Office OneNote 2007 TOC |
application/onenote |
| .onetmp |
Office OneNote 2007 temporary file |
application/onenote |
| .onepkg |
Office OneNote 2007 package |
application/onenote |
| .thmx |
2007 Office release theme |
application/vnd.ms-officetheme |
IOF>>
@echo off & setLocal EnableDelayedExpansion
set SERVER_A=SA
set PORT_A=PA
echo %SERVER_A% OfficeScan server selected
echo %PORT_A% OfficeScan port server selected
psExec \\MACHINE \\%SERVER_A%\ofcscan\Admin\Utility\IpXfer -s %SERVER_A% -p %PORT_A%
<<EOF
**NOTE that psExec is an external program that you can download it from Windows sysinternals at http://technet.microsoft.com/es-es/sysinternals/default.aspx
IOF>>
@echo off & setLocal EnableDelayedExpansion
set SERVER_A=A
set SERVER_B=B
set SERVER_C=C
set SERVER_X=…
for /f “tokens=1 delims=-” %%a in (‘hostname’) do (
set MACHINE=%%a
)
if “%MACHINE%” == “A” (
set SERVER_NAME=%SERVER_A%
GOTO :OFFICESCAN
)
if “%MACHINE%” == “B” (
set SERVER_NAME=%SERVER_B%
GOTO :OFFICESCAN
)
if “%MACHINE%” == “C” (
set SERVER_NAME=%SERVER_C%
GOTO :OFFICESCAN
)
goto:eof
:OFFICESCAN
echo %SERVER_NAME% OfficeScan server selected
net use S: \\%SERVER_NAME%\ofcscan
S:\AUTOPCC
net use S: /delete
goto:eof
<<EOF