ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   .bat file to enter password protected .xls sheet (https://www.excelbanter.com/excel-programming/420044-bat-file-enter-password-protected-xls-sheet.html)

Paul Lambson

.bat file to enter password protected .xls sheet
 
I am trying to create a .bat file to open a .xls file. But the file is
password protected to modify. I can't figure out the code to enter the
password in the .bat file and then hit the "OK" key

start "C:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE"
"W:\YIELDMGT\Paul Lambson\SAS\ThanksChart.xls"
nircmd.exe dlg "password" click OK

the first two lines get me to the prompt for the password but i'm
stuck there

HELP~~

Paul

joel

.bat file to enter password protected .xls sheet
 
I went to microsoft website and there doesn't appearr to be a password switch

see

http://office.microsoft.com/en-us/ex...0301033.aspx#4

Another solution would be to open another workbook with no password. In
this workbook put a Workbook_Open event. The workbook Open Event can open a
2nd workbook with a password.

"Paul Lambson" wrote:

I am trying to create a .bat file to open a .xls file. But the file is
password protected to modify. I can't figure out the code to enter the
password in the .bat file and then hit the "OK" key

start "C:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE"
"W:\YIELDMGT\Paul Lambson\SAS\ThanksChart.xls"
nircmd.exe dlg "password" click OK

the first two lines get me to the prompt for the password but i'm
stuck there

HELP~~

Paul


Peter T

.bat file to enter password protected .xls sheet
 
I like Joel's idea to use a dummy file's open event to open the p/w
protected file.

Could also try a vbs script if your system allows it

''' start vbs script
On Error Resume Next
Set oxl = GetObject(, "excel.application")
If oxl Is Nothing Then
Set oxl = CreateObject("excel.application")
End If

If oxl Is Nothing Then
MsgBox "Cannot start Excel"
Else
oxl.Visible = True
Set owb = oxl.Workbooks.Open("C:\path\file.xls", , , ,"password") ' <<
change path & password
If owb Is Nothing Then
MsgBox "Cannot open file"
Else
owb.Visible = True
oxl.Windows(1).WindowState = -4137 'xlMaximized
End If

End If
''' end vbs script

copy the above into a text editor (eg Notepad) and save with a *.vbs
extention, say onto the desktop.


Regards,
Peter T



"Paul Lambson" wrote in message
...
I am trying to create a .bat file to open a .xls file. But the file is
password protected to modify. I can't figure out the code to enter the
password in the .bat file and then hit the "OK" key

start "C:\Program Files\Microsoft Office\OFFICE11\EXCEL.EXE"
"W:\YIELDMGT\Paul Lambson\SAS\ThanksChart.xls"
nircmd.exe dlg "password" click OK

the first two lines get me to the prompt for the password but i'm
stuck there

HELP~~

Paul




Paul Lambson

.bat file to enter password protected .xls sheet
 
Peter it tried your VBS script. It lauches excel and tries to launch
the .xls but doensn't do the password. any tips?

this is the code
''' start vbs script
On Error Resume Next
Set oxl = GetObject(, "excel.application")
If oxl Is Nothing Then
Set oxl = CreateObject("excel.application")
End If


If oxl Is Nothing Then
MsgBox "Cannot start Excel"
Else
oxl.Visible = True
Set owb = oxl.Workbooks.Open("W:\YIELDMGT\Paul Lambson\SAS
\ThanksChart.xls", , , ,"XXXXX") ' <<
change path & password
If owb Is Nothing Then
MsgBox "dang it paul do this right"
Else
owb.Visible = True
oxl.Windows(1).WindowState = -4137 'xlMaximized
End If


End If
''' end vbs script

Peter T

.bat file to enter password protected .xls sheet
 
It worked for me but try the exact same code in VBA,
Sub abc()
' the vbs code here
' comment the On Error line
End Sub

get rid of this line (my mistake though not the current problem)
owb.Visible = True


Actually not sure the WindowState line below it helps, try w/out

Once you've got it working amend the vbs
(don't declare any variables or use any named xl constants)

Regards,
Peter T



"Paul Lambson" wrote in message
...
Peter it tried your VBS script. It lauches excel and tries to launch
the .xls but doensn't do the password. any tips?

this is the code
''' start vbs script
On Error Resume Next
Set oxl = GetObject(, "excel.application")
If oxl Is Nothing Then
Set oxl = CreateObject("excel.application")
End If


If oxl Is Nothing Then
MsgBox "Cannot start Excel"
Else
oxl.Visible = True
Set owb = oxl.Workbooks.Open("W:\YIELDMGT\Paul Lambson\SAS
\ThanksChart.xls", , , ,"XXXXX") ' <<
change path & password
If owb Is Nothing Then
MsgBox "dang it paul do this right"
Else
owb.Visible = True
oxl.Windows(1).WindowState = -4137 'xlMaximized
End If


End If
''' end vbs script





All times are GMT +1. The time now is 03:00 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com