Warning: Constant ABSPATH already defined in /customers/0/c/e/ogenstad.net/httpd.www/wp-config.php on line 24 Warning: Cannot modify header information - headers already sent by (output started at /customers/0/c/e/ogenstad.net/httpd.www/wp-config.php:24) in /customers/0/c/e/ogenstad.net/httpd.www/wp-includes/feed-rss2-comments.php on line 8 Comments on: How to Document Servers with SYDI – Part 3 of 3 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/ Security Stories and Help with Network Documentation Fri, 19 Oct 2018 00:47:36 +0000 hourly 1 By: Doug http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-161303 Fri, 19 Oct 2018 00:47:36 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-161303 Good work, thanks for putting this stuff up.

]]>
By: ETT http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-151267 Mon, 18 Jun 2018 11:32:36 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-151267 Hello, I run the script and get XML file, when I tried to open in Browser I could not read it is in XML tag,
how I can read this file and converted to DOC

]]>
By: Cam Bart http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-129451 Tue, 31 Jan 2017 05:24:40 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-129451 Hey Mr AP – I overcame this issue if you ensure that your excel is not launching minimized. Open and expand your excel after it is launched from SYDI. Maximise / full screen your excel window, save & close the file. On next launch of sydi-overview.vbs that creates excel file it will launch full window and capable of using the FreezePanes. Just make sure lines 590 to 603 in sydi-overview now look like:

objExcel.Cells.Select
objExcel.Cells.EntireColumn.AutoFit
objExcel.ActiveWindow.SplitRow = 0.8
objExcel.ActiveWindow.FreezePanes = True
objExcel.Range(“A1”).Select
objExcel.Sheets(1).Name = “Computers”
objExcel.Sheets.Add ,objExcel.Sheets(1) ‘ Add a new sheet after the last one
objExcel.Sheets(2).Name = “WMI Programs”
objExcel.Sheets.Add ,objExcel.Sheets(2) ‘ Add a new sheet after the last one
objExcel.Sheets(3).Name = “Registry Programs”
objExcel.Sheets.Add ,objExcel.Sheets(3) ‘ Add a new sheet after the last one
objExcel.Sheets(4).Name = “Processes”
objExcel.Sheets.Add ,objExcel.Sheets(4) ‘ Add a new sheet after the last one
objExcel.Sheets(5).Name = “OS Distribution Data”

]]>
By: Mr AP http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-127694 Fri, 02 Dec 2016 19:18:52 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-127694 Hi Guys

Anyone have this issue when running Sydi-overview

sydi-overview.vbs(593, 5) Microsoft Excel: Unable to set the FreezePanes property of the Window class

]]>
By: Marty Gomez http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-126951 Tue, 01 Nov 2016 21:17:45 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-126951 $1 = gci C:\scripts\VB\sydi-server-2.4\Out\*.xml

Clear-host
$ErrorActionPreference = ‘SilentlyContinue’

foreach ($file in $1){

$3 = $file.Name

$split = $3.split(‘.’)[0].split(‘ ‘)

cscript “C:\scripts\VB\sydi-server-2.4\tools\sydi-transform.vbs” -x”$file” -sC:\scripts\VB\sydi-server-2.4\xml\serverhtml.xsl -oC:\scripts\VB\sydi-server-2.4\Out\htm\$split.html

}

]]>
By: Brian Black http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-121743 Thu, 03 Mar 2016 16:56:35 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-121743 Anyone know if when you capture data using the AD connection using SYDI-Wrapper.vbs. Is there an easy way to convert all of the xml files into html using a single command or script?

]]>
By: Judy http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-121559 Mon, 22 Feb 2016 14:21:26 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-121559 Similar to JON – I have used a FOR loop to product WORD documents:
for /F %i in (c:\pathtoServersTextFile) do cscript.exe sydi-server.vbs -wabefghipPqrsSu -rc -f10 -t%i -uUSERID -pPASSWORD -oc:\SYDI\%i.doc

]]>
By: Karim http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-121238 Thu, 04 Feb 2016 07:58:12 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-121238 please ignore my first message. now I’m getting this message;

2) Microsoft Word: The requested member of the collection does not exist.

Word open empty and my xml file is working fine

]]>
By: Karim http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-121237 Thu, 04 Feb 2016 07:31:03 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-121237 Hi

can anyone help with this error, thanks in advance.

I’ve copied the whole folder to D:\ and my xml output file is also in D:\

Input Error: Can not find script file “D:\sydi-server-2.4\ss-xml2word.vbs”.

]]>
By: Jörg Wiesemann http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/comment-page-1/#comment-114581 Tue, 22 Sep 2015 14:51:31 +0000 http://ogenstad.net/2006/10/18/how-to-document-servers-with-sydi-part-3-of-3/#comment-114581 There is a problem in the script sydi-audit-localgroups.vbs when you use it with Excel 2013
You got following error:

Opening Excel File
G:\IT\Sydi\server\tools\sydi-audit-localgroups.vbs(270, 4) Microsoft VBScript runtime error: Subscript out of range

And this is because Excel now only open one sheet instead of three
So you have to change row 269 that look like this
If (intSheet < 4) Then

To following
If (intSheet < 2) Then

When you have done this it works

]]>