11 lines
No EOL
252 B
Python
11 lines
No EOL
252 B
Python
"""WizardKit: Export Bitlocker Tool"""
|
|
# vim: sts=2 sw=2 ts=2
|
|
|
|
import os
|
|
import sys
|
|
|
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
|
sys.path.append(os.getcwd())
|
|
import wk # pylint: disable=wrong-import-position
|
|
|
|
wk.os.win.export_bitlocker_info() |