Sunday, January 29, 2023

subprocess in python code for opening ms SQL ui

import subprocess

def open_msn_sql_ui():
    subprocess.run(["ssms.exe"])

if __name__ == '__main__':
    open_msn_sql_ui()

No comments:

Post a Comment