diff --git a/examples/idapythonrc.py b/examples/idapythonrc.py new file mode 100644 index 0000000..401f8a3 --- /dev/null +++ b/examples/idapythonrc.py @@ -0,0 +1,15 @@ +#--------------------------------------------------------------------- +# Example user initialisation script: idapythonrc.py +# +# Place this script to ~/.idapro/ or to +# C:\Documents and Settings\%USER%\Application Data\Hex-Rays\IDA Pro +#--------------------------------------------------------------------- + +# Add your favourite script to ScriptBox for easy access +# scriptbox.addscript("/here/is/my/favourite/script.py") + +# Uncomment if you want to set Python as default interpreter in IDA +# idaapi.enable_extlang_python(True) + +# Disable the Python from interactive command-line +# idaapi.enable_python_cli(False)