office excel template .xlt
-> double click = document openned (title of document="template")
-> right click, select Open = document openned (title of document="template.xlt")
If I double click a office excel template the title of the document has the file name without the file extension, if I right click the file and select "Open" the title of the document has the file name with the file extension included. This means that something happens in the background, something is different. The question is what?
When I open the file with powershell the first presented case happens, but I need the second case to happen.
Any ideas?
Answer found:
$missing = [System.Reflection.Missing]::Value
$variableName.workbooks.open($file.fullname, $missing, $missing, $missing, $missing, $missing, $missing, $missing, $missing, $true, $missing, $missing, $missing, $missing, $missing)
cool