Windows Batch file to Easily Convert MagicLantern.RAW files into CinemaDNG Posted by idealsceneprod - 09 Nov :17

Size: px
Start display at page:

Download "Windows Batch file to Easily Convert MagicLantern.RAW files into CinemaDNG Posted by idealsceneprod - 09 Nov :17"

Transcription

1 Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by idealsceneprod - 09 Nov :17 I just wrote up a quick little batch file (Windows/DOS) onto which you can drag your.raw files, and, so long as you have raw2dng in your path, it will create a sub-directory in the same folder with the name of the file you drag and dropped and will put all the.dng files in there, and name them the same as the original file name, plus a dash - and then file number (e.g. M dng) This is just a little time-saver for me. I have the.bat file on my desktop, and all I have to do is drag and drop one.raw file at a time onto the batch file, and thatll create all the folder for me, and give me a good nomenclature. The folders are created in the same folder as the original.raw files. You must have raw2dng in your PATH. I did this because when I ran EyeFrame Converter, it went ahead and created TIFF files alongside the.dng files, and I couldnt figure out how to tell it to not do that, and I wanted the.dng files to end up in the same location, but in a subfolder. These are the contents of my MLRAW2DNG.BAT file: :Loop IF "%1"=="" GOTO Continue set FILENAME=%~n1 MD %FILENAME% raw2dng %1 %FILENAME%%FILENAME%- SHIFT GOTO Loop :Continue Re: Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by tin2tin - 09 Nov :11 Does raw2dng now create or is it still "just" dng files? 1 / 18

2 Re: Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by idealsceneprod - 09 Nov :21 are 1 still per frame.dng files, although the.raw files that ML shoots are a single file per clip. Still not sure how to get audio out of that. Re: Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by idealsceneprod - 10 Nov :04 Never mind... found a better tool! Batchelor 3 is a GUI tool that does what I was trying to do! I like it a lot so far Re: Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by tin2tin - 10 Nov :12 I think this is only this tool on the Windows box which will give you files from RAW files: w ww.phreekz.de/wordpress/2013/06/magiclantern-raw2cdng-cinema-dng/ is needed for Adobe products. However if youre using DaVinci Resolve all tools using raw2dng.exe should generate useable dng 2 / 18

3 files(but they are not files). Re: Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by idealsceneprod - 10 Nov :07 And I changed my mind!! Batchelor wasnt doing exactly what I wanted, so Im writing a VBscript which you can run directly in Windows. This is not complete, as I want to add the additional options on the menu, but for those who dont care, here you have the current incarnation. I also copied some functions I found on the Internet, and left those credits in there. Save the following text as a.vbs file and then you can drag and drop your files from the CF card onto it: Batch file to Copy and Convert ML Raw footage to a specified location using drag and drop By Val Gameiro Option Explicit Dim arg, newarg(), projname, destfolder, wshshell, i, response, objshell, objfolder, objfolderitem Dim bullit, intindex, argcount Set arg = WScript.Arguments bullit = Chr(10) & " " & Chr(149) & " " argcount = arg.count Input Project name to create folder? Or just for EXIFTOOL? projname = UserInput( "Enter project name: " ) If projname = "" Then WScript.Quit Select where to store the files and conversions Const DESKTOP = &H10& Set objshell = CreateObject("Shell.Application") Set objfolder = objshell.namespace(desktop) Set objfolderitem = objfolder.self Wscript.Echo objfolderitem.path destfolder = BrowseFolder( "objfolderitem.path", False ) If destfolder = "" Then WScript.Quit Select Conversion option Do response = InputBox("Select conversion format:" & Chr(10) & bullit & "1) (RAW2DNG)" & bullit & "2) (DCRAW)" & bullit & "3) 3 / 18

4 GoPro CineForm" & bullit & "4) Quit" & Chr(10), "Enter option number:") If response = "" Then WScript.Quit Detect Cancel If IsNumeric(response) Then Exit Do Detect value response. MsgBox "You must enter a numeric value.", 48, "Invalid Entry" Loop If response = 4 Then WScript.Quit MsgBox "The user chose :" & response, 64, "Yay!" Copy files and notify its done, so user can remove card Set wshshell = WScript.CreateObject ("WSCript.shell") i = 0 ReDim newarg(argcount) Dim components, objfilecopy, objfso Set objfso = CreateObject("Scripting.FileSystemObject") While i < argcount MsgBox "xcopy """ & arg(i) & """ " & """" & destfolder & """" & " /V /Q" wshshell.run "xcopy """ & arg(i) & """ " & """" & destfolder & """" & " /V /Q" MsgBox "Error: " & Err.Number If Err.Number = 0 Then components = Split(arg(i), "") newarg(i) = destfolder & "" & components(ubound(components)) Wscript.Echo "File name: " & newarg(i) Uncomment the next line to automatically delete the file i = i + 1 Wend Msgbox "Files have been copied, you can now erase and remove the card/media" Convert files Include option to put DNGs in Subfolder, or same folder as.raw i = 0 Dim fullfilename, filename, tofile, filepath While i < argcount Select Case response Case 1 components = Split(newarg(i), "") fullfilename = components(ubound(components)) including.ext filename = Left(fullfilename, InStrRev(fullfilename, ".")-1) filepath = Replace(newarg(i), fullfilename, "") MsgBox "md """ & filepath & "DNG""" tofile = Replace(newarg(i), fullfilename, filename) wshshell.run "md """ & filepath & "DNG""" tofile = Replace(newarg(i), fullfilename, "DNG" & filename) MsgBox fullfilename & " / " & tofile & "-""" MsgBox "raw2dng """ & newarg(i) & """ " & """" & tofile & "-""" wshshell.run "%comspec% /k " & "raw2dng """ & newarg(i) & """ " & """" & tofile & "-""" wshshell.run "raw2dng """ & newarg(i) & """ " & """" & tofile & "-""" 4 / 18

5 Case 2 End Select i = i + 1 Wend exiftool -ReelName=%%REELNAME%% *.DNG -overwrite_original_in_place House cleaning Set arg = Nothing WScript.quit Function BrowseFolder( mystartlocation, blnsimpledialog ) This function generates a Browse Folder dialog and returns the selected folder as a string. Arguments: mystartlocation [string] start folder for dialog, or "My Computer", or empty string to open in "DesktopMy Documents" blnsimpledialog [boolean] if False, an additional text field will be displayed where the folder can be selected by typing the fully qualified path Returns: [string] the fully qualified path to the selected folder Based on the Hey Scripting Guys article "How Can I Show Users a Dialog Box That Only Lets Them Select Folders?" Function written by Rob van der Woude Const MY_COMPUTER = &H11& Const WINDOW_HANDLE = 0 Must ALWAYS be 0 Dim numoptions, objfolder, objfolderitem Dim objpath, objshell, strpath, strprompt Set the options for the dialog window strprompt = "Select a folder to store files:" If blnsimpledialog = True Then numoptions = 0 Simple dialog Else numoptions = &H10& Additional text field to type folder path Create a Windows Shell object Set objshell = CreateObject( "Shell.Application" ) If specified, convert "My Computer" to a valid path for the Windows Shells BrowseFolder method If UCase( mystartlocation ) = "MY COMPUTER" Then Set objfolder = objshell.namespace( MY_COMPUTER ) Set objfolderitem = objfolder.self 5 / 18

6 strpath = objfolderitem.path Else strpath = mystartlocation Set objfolder = objshell.browseforfolder( WINDOW_HANDLE, strprompt, _ numoptions, strpath ) Quit if no folder was selected If objfolder Is Nothing Then BrowseFolder = "" Exit Function Retrieve the path of the selected folder Set objfolderitem = objfolder.self objpath = objfolderitem.path Return the path of the selected folder BrowseFolder = objpath End Function Function UserInput( myprompt ) This function prompts the user for some input. When the script runs in CSCRIPT.EXE, StdIn is used, otherwise the VBScript InputBox( ) function is used. myprompt is the the text used to prompt the user for input. The function returns the input typed either on StdIn or in InputBox( ). Written by Rob van der Woude Check if the script runs in CSCRIPT.EXE If UCase( Right( WScript.FullName, 12 ) ) = "CSCRIPT.EXE" Then If so, use StdIn and StdOut WScript.StdOut.Write myprompt & " " UserInput = WScript.StdIn.ReadLine Else If not, use InputBox( ) UserInput = InputBox( myprompt ) End Function Re: Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by idealsceneprod - 10 Nov :48 Heres an updated version, allowing for CineForm conversion, but youll need to have GoPro Studio installed, and download the RAW2GPCF from the magiclantern forums. 6 / 18

7 Batch file to Copy and Convert ML Raw footage to a specified location using drag and drop Option Explicit Dim arg, newarg(), projname, destfolder, wshshell, i, response, objshell, objfolder, objfolderitem Dim bullit, intindex, argcount Set arg = WScript.Arguments bullit = Chr(10) & " " & Chr(149) & " " argcount = arg.count Input Project name to create folder? Or just for EXIFTOOL? projname = UserInput( "Enter project name: " ) If projname = "" Then WScript.Quit Select where to store the files and conversions Const DESKTOP = &H10& Set objshell = CreateObject("Shell.Application") Set objfolder = objshell.namespace(desktop) Set objfolderitem = objfolder.self Wscript.Echo objfolderitem.path destfolder = BrowseFolder( "objfolderitem.path", False ) If destfolder = "" Then WScript.Quit Select Conversion option Do response = InputBox("Select conversion format:" & Chr(10) & bullit & "1) (RAW2DNG)" & bullit & "2) GoPro CineForm.AVI compressed" & bullit & "4) Quit" & Chr(10), "Enter option number:") If response = "" Then WScript.Quit Detect Cancel If IsNumeric(response) Then Exit Do Detect value response. MsgBox "You must enter a numeric value.", 48, "Invalid Entry" Loop If response = 4 Then WScript.Quit MsgBox "The user chose :" & response, 64, "Yay!" Copy files and notify its done, so user can remove card Set wshshell = WScript.CreateObject ("WSCript.shell") i = 0 ReDim newarg(argcount) Dim components, objfilecopy, objfso Set objfso = CreateObject("Scripting.FileSystemObject") While i < argcount MsgBox "xcopy """ & arg(i) & """ " & """" & destfolder & """" & " /V /Q" wshshell.run "xcopy """ & arg(i) & """ " & """" & destfolder & """" & " /V /Q" MsgBox "Error: " & Err.Number If Err.Number = 0 Then components = Split(arg(i), "") newarg(i) = destfolder & "" & components(ubound(components)) Wscript.Echo "File name: " & newarg(i) Uncomment the next line to automatically delete the file 7 / 18

8 i = i + 1 Wend Msgbox "Files have been copied, you can now erase and remove the card/media" Convert files Include option to put DNGs in Subfolder, or same folder as.raw i = 0 Dim fullfilename, filename, tofile, filepath While i < argcount Select Case response Case 1 Using RAW2DNG components = Split(newarg(i), "") fullfilename = components(ubound(components)) including.ext filename = Left(fullfilename, InStrRev(fullfilename, ".")-1) filepath = Replace(newarg(i), fullfilename, "") MsgBox "md """ & filepath & "DNG""" tofile = Replace(newarg(i), fullfilename, filename) wshshell.run "md """ & filepath & "DNG""" tofile = Replace(newarg(i), fullfilename, "DNG" & filename) MsgBox fullfilename & " / " & tofile & "-""" MsgBox "raw2dng """ & newarg(i) & """ " & """" & tofile & "-""" wshshell.run "%comspec% /k " & "raw2dng """ & newarg(i) & """ " & """" & tofile & "-""" wshshell.run "raw2dng """ & newarg(i) & """ " & """" & tofile & "-""" Case 2 Using RAW2CF from CineForm Tools 422 components = Split(newarg(i), "") fullfilename = components(ubound(components)) including.ext filename = Left(fullfilename, InStrRev(fullfilename, ".")-1) filepath = Replace(newarg(i), fullfilename, "") MsgBox "md """ & filepath & "DNG""" tofile = Replace(newarg(i), fullfilename, filename) MsgBox fullfilename & " / " & tofile & "-""" MsgBox "raw2gpcf """ & newarg(i) & """ " & """" & tofile & ".avi""" wshshell.run "raw2gpcf """ & newarg(i) & """ " & """" & tofile & ".avi""" End Select i = i + 1 Wend exiftool -ReelName=%%REELNAME%% *.DNG -overwrite_original_in_place House cleaning Set arg = Nothing WScript.quit Function BrowseFolder( mystartlocation, blnsimpledialog ) This function generates a Browse Folder dialog and returns the selected folder as a string. 8 / 18

9 Arguments: mystartlocation [string] start folder for dialog, or "My Computer", or empty string to open in "DesktopMy Documents" blnsimpledialog [boolean] if False, an additional text field will be displayed where the folder can be selected by typing the fully qualified path Returns: [string] the fully qualified path to the selected folder Based on the Hey Scripting Guys article "How Can I Show Users a Dialog Box That Only Lets Them Select Folders?" Function written by Rob van der Woude Const MY_COMPUTER = &H11& Const WINDOW_HANDLE = 0 Must ALWAYS be 0 Dim numoptions, objfolder, objfolderitem Dim objpath, objshell, strpath, strprompt Set the options for the dialog window strprompt = "Select a folder to store files:" If blnsimpledialog = True Then numoptions = 0 Simple dialog Else numoptions = &H10& Additional text field to type folder path Create a Windows Shell object Set objshell = CreateObject( "Shell.Application" ) If specified, convert "My Computer" to a valid path for the Windows Shells BrowseFolder method If UCase( mystartlocation ) = "MY COMPUTER" Then Set objfolder = objshell.namespace( MY_COMPUTER ) Set objfolderitem = objfolder.self strpath = objfolderitem.path Else strpath = mystartlocation Set objfolder = objshell.browseforfolder( WINDOW_HANDLE, strprompt, _ numoptions, strpath ) Quit if no folder was selected If objfolder Is Nothing Then BrowseFolder = "" Exit Function Retrieve the path of the selected folder 9 / 18

10 Set objfolderitem = objfolder.self objpath = objfolderitem.path Return the path of the selected folder BrowseFolder = objpath End Function Function UserInput( myprompt ) This function prompts the user for some input. When the script runs in CSCRIPT.EXE, StdIn is used, otherwise the VBScript InputBox( ) function is used. myprompt is the the text used to prompt the user for input. The function returns the input typed either on StdIn or in InputBox( ). Written by Rob van der Woude Check if the script runs in CSCRIPT.EXE If UCase( Right( WScript.FullName, 12 ) ) = "CSCRIPT.EXE" Then If so, use StdIn and StdOut WScript.StdOut.Write myprompt & " " UserInput = WScript.StdIn.ReadLine Else If not, use InputBox( ) UserInput = InputBox( myprompt ) End Function Re: Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by idealsceneprod - 11 Nov :26 Yeah, thats what Im finding out. the tool above doesnt have command line options, I dont think. I use Resolve myself, although using the CineForm option, which creates an.avi may work for Lightworks as a proxy... havent tried that yet. Re: Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by idealsceneprod - 11 Nov :42 And here is another updated version, this one calling ExifTool at the end to tag all the.dng files: Batch file to Copy and Convert ML Raw footage to a specified location using drag and drop 10 / 18

11 By Val Gameiro Option Explicit Dim arg, newarg(), projname, destfolder, subfolder, wshshell, i, response, objshell, objfolder, objfolderitem Dim bullit, intindex, argcount Set arg = WScript.Arguments bullit = Chr(10) & " " & Chr(149) & " " argcount = arg.count Input Magazine name for EXIFTOOL - Create folder in Browse Folder dialog (Folder = Project) projname = UserInput( "Enter Magazine Name for EXIFTOOL tagging (e.g. Test Shoot Mag A): " ) If projname = "" Then WScript.Quit Select where to store the files and conversions Const DESKTOP = &H10& Set objshell = CreateObject("Shell.Application") Set objfolder = objshell.namespace(desktop) Set objfolderitem = objfolder.self Wscript.Echo objfolderitem.path destfolder = BrowseFolder( "objfolderitem.path", False ) If destfolder = "" Then WScript.Quit Select Conversion option Do response = InputBox("Select conversion format:" & Chr(10) & bullit & "1) (RAW2DNG)" & bullit & "2) GoPro CineForm.AVI compressed" & bullit & 11 / 18

12 "4) Quit" & Chr(10), "Enter option number:") If response = "" Then WScript.Quit Detect Cancel If IsNumeric(response) Then Exit Do Detect value response. MsgBox "You must enter a numeric value.", 48, "Invalid Entry" Loop If response = 4 Then WScript.Quit MsgBox "The user chose :" & response, 64, "Yay!" Copy files and notify its done, so user can remove card Set wshshell = WScript.CreateObject ("WSCript.shell") i = 0 ReDim newarg(argcount) Dim components, objfilecopy, objfso Set objfso = CreateObject("Scripting.FileSystemObject") While i < argcount components = Split(arg(i), "") subfolder = "" & Left(components(Ubound(components)), InStrRev(components(Ubound(components)), ".")-1) Create FileSystemObject. So we can apply.createfolder method Set objfso = CreateObject("Scripting.FileSystemObject") Here is the key line Create a Folder, using strdirectory If Not objfso.folderexists(destfolder & subfolder) Then Set objfolder = objfso.createfolder(destfolder & subfolder) MsgBox "xcopy """ & arg(i) & """ " & """" & destfolder & """" & " /V /Q" 12 / 18

13 wshshell.run "xcopy """ & arg(i) & """ " & """" & destfolder & subfolder & """" & " /V /Q", 4, True MsgBox "Error: " & Err.Number If Err.Number = 0 Then newarg(i) = destfolder & subfolder & "" & components(ubound(components)) Wscript.Echo "File name: " & newarg(i) Uncomment the next line to automatically delete the source file i = i + 1 Wend Msgbox "Files have been copied, you can now erase and remove the card/media" Convert files Include option to put DNGs in Subfolder, or same folder as.raw i = 0 Dim fullfilename, filename, tofile, filepath While i < argcount Select Case response Case 1 Using RAW2DNG components = Split(newarg(i), "") fullfilename = components(ubound(components)) including.ext filename = Left(fullfilename, InStrRev(fullfilename, ".")-1) filepath = Replace(newarg(i), fullfilename, "") MsgBox "md """ & filepath & "DNG""" tofile = Replace(newarg(i), fullfilename, filename) wshshell.run "md """ & filepath & "DNG""" 13 / 18

14 tofile = Replace(newarg(i), fullfilename, "DNG" & filename) MsgBox fullfilename & " / " & tofile & "-""" MsgBox "raw2dng """ & newarg(i) & """ " & """" & tofile & "-""" wshshell.run "%comspec% /k " & "raw2dng """ & newarg(i) & """ " & """" & tofile & "-""" wshshell.run "raw2dng """ & newarg(i) & """ " & """" & tofile & "-""", 4, True MsgBox "exiftool -v1 -ReelName=" & """" & projname & """" & " *.DNG -overwrite_original_in_place" wshshell.run "exiftool -ReelName=" & """" & projname & """" & " *.DNG -overwrite_original_in_place", 4, True Case 2 Using RAW2CF from CineForm Tools 422 components = Split(newarg(i), "") fullfilename = components(ubound(components)) including.ext filename = Left(fullfilename, InStrRev(fullfilename, ".")-1) filepath = Replace(newarg(i), fullfilename, "") MsgBox "md """ & filepath & "DNG""" tofile = Replace(newarg(i), fullfilename, filename) MsgBox fullfilename & " / " & tofile & "-""" MsgBox "raw2gpcf """ & newarg(i) & """ " & """" & tofile & ".avi""" wshshell.run "raw2gpcf """ & newarg(i) & """ " & """" & tofile & ".avi""", 4, True End Select i = i + 1 Wend House cleaning Set arg = Nothing 14 / 18

15 WScript.quit Function BrowseFolder( mystartlocation, blnsimpledialog ) This function generates a Browse Folder dialog and returns the selected folder as a string. Arguments: mystartlocation [string] start folder for dialog, or "My Computer", or empty string to open in "DesktopMy Documents" blnsimpledialog [boolean] if False, an additional text field will be displayed where the folder can be selected by typing the fully qualified path Returns: [string] the fully qualified path to the selected folder Based on the Hey Scripting Guys article "How Can I Show Users a Dialog Box That Only Lets Them Select Folders?" Function written by Rob van der Woude Const MY_COMPUTER = &H11& Const WINDOW_HANDLE = 0 Must ALWAYS be 0 Dim numoptions, objfolder, objfolderitem Dim objpath, objshell, strpath, strprompt 15 / 18

16 Set the options for the dialog window strprompt = "Select a folder to store files:" If blnsimpledialog = True Then numoptions = 0 Simple dialog Else numoptions = &H10& Additional text field to type folder path Create a Windows Shell object Set objshell = CreateObject( "Shell.Application" ) If specified, convert "My Computer" to a valid path for the Windows Shells BrowseFolder method If UCase( mystartlocation ) = "MY COMPUTER" Then Set objfolder = objshell.namespace( MY_COMPUTER ) Set objfolderitem = objfolder.self strpath = objfolderitem.path Else strpath = mystartlocation Set objfolder = objshell.browseforfolder( WINDOW_HANDLE, strprompt, _ numoptions, strpath ) Quit if no folder was selected If objfolder Is Nothing Then 16 / 18

17 BrowseFolder = "" Exit Function Retrieve the path of the selected folder Set objfolderitem = objfolder.self objpath = objfolderitem.path Return the path of the selected folder BrowseFolder = objpath End Function Function UserInput( myprompt ) This function prompts the user for some input. When the script runs in CSCRIPT.EXE, StdIn is used, otherwise the VBScript InputBox( ) function is used. myprompt is the the text used to prompt the user for input. The function returns the input typed either on StdIn or in InputBox( ). Written by Rob van der Woude Check if the script runs in CSCRIPT.EXE If UCase( Right( WScript.FullName, 12 ) ) = "CSCRIPT.EXE" Then If so, use StdIn and StdOut WScript.StdOut.Write myprompt & " " UserInput = WScript.StdIn.ReadLine Else 17 / 18

18 If not, use InputBox( ) UserInput = InputBox( myprompt ) End Function Re: Windows Batch file to Easily Convert MagicLantern.RAW files into Posted by idealsceneprod - 13 Nov 2013 as far as I know RAW2DNG only does.dng files. But as I understand it the only difference between and DNG are some of the headers and EXIF tags. 18 / 18

4 Working with WSH objects

4 Working with WSH objects 4 Working with WSH objects In the preceding chapter I have discussed a few basics of script programming. We have also used a few objects, methods and properties. In this chapter I would like to extend

More information

00:33 Network Loses Connection. 00:30 Health Check. Sweep all files in the monitored folder regardless of when deposited (i.e., process ALL files).

00:33 Network Loses Connection. 00:30 Health Check. Sweep all files in the monitored folder regardless of when deposited (i.e., process ALL files). FOLDER SWEEP OVERVIEW A common use of EFT Server s Folder Monitor rule is to detect files and move them to a different location on the network for processing. Mission critical operations require all files

More information

DIGIBRANDING SIGNATURE SCRIPT Stepped Out

DIGIBRANDING SIGNATURE SCRIPT Stepped Out DIGIBRANDING SIGNATURE SCRIPT Stepped Out Here I walked the script and added some info on setup variables. Pay Attention to notes and items in RED START ** Declare some constants 'On the next line edit

More information

PROGRAMATICALLY STARTING AND STOPPING AN SAP XMII UDS EXECUTABLE INSTANCE

PROGRAMATICALLY STARTING AND STOPPING AN SAP XMII UDS EXECUTABLE INSTANCE SDN Contribution PROGRAMATICALLY STARTING AND STOPPING AN SAP XMII UDS EXECUTABLE INSTANCE Summary Some data sources run as executable programs which is true of most SCADA packages. In order for an SAP

More information

How can I re-wrap an AVCHD MTS file to MP4? Posted by shaunthesheep - 07 Jun :39

How can I re-wrap an AVCHD MTS file to MP4? Posted by shaunthesheep - 07 Jun :39 How can I re-wrap an AVCHD MTS file to MP4? Posted by shaunthesheep - 07 Jun 2011 17:39 My first video tutorial using CamStudio 2.6b. Note: make sure to select the highest playback quality (720p) to get

More information

As an A+ Certified Professional, you will want to use the full range of

As an A+ Certified Professional, you will want to use the full range of Bonus Chapter 1: Creating Automation Scripts In This Chapter Understanding basic programming techniques Introducing batch file scripting Introducing VBScript Introducing PowerShell As an A+ Certified Professional,

More information

Automated Flashing and Testing with CANoe, vflash and VN89xx Version Application Note AN-IDG-1-018

Automated Flashing and Testing with CANoe, vflash and VN89xx Version Application Note AN-IDG-1-018 Automated Flashing and Testing with CANoe, vflash and VN89xx Version 1.0 2019-02-19 Application Note AN-IDG-1-018 Author Restrictions Abstract Thomas Schmidt Public Document Automatic updating an ECU s

More information

User Environment Variables in App-V 5.0 with SP1, SP2 and SP2 Hotfix 4

User Environment Variables in App-V 5.0 with SP1, SP2 and SP2 Hotfix 4 User Environment Variables in App-V 5.0 with SP1, SP2 and SP2 Hotfix 4 Dan Gough wrote an excellent article named: User Environment Variables in App-V 5 Scripts. To summarize: it is about the fact that

More information

Debugging Runtime Scripts in Operations Manager and Essentials 2007 The third installment in the System Center Forum Scripting Series

Debugging Runtime Scripts in Operations Manager and Essentials 2007 The third installment in the System Center Forum Scripting Series Debugging Runtime Scripts in Operations Manager and Essentials 2007 The third installment in the System Center Forum Scripting Series Author: Neale Brown, MCSE (Messaging) Contributor, System Center Forum

More information

Deep Freeze Enterprise - Patch Management

Deep Freeze Enterprise - Patch Management Deep Freeze Enterprise - Patch Management TECHNICAL WHITEPAPER Last modified: June 26, 2009 Faronics Toll Free Tel: 800-943-6422 Toll Free Fax: 800-943-6488 International Tel: +1 604-637-3333 International

More information

About Boxoft All to AMR Converter

About Boxoft All to AMR Converter Note: This product is distributed on a try-before-you-buy basis. All features described in this documentation are enabled. The registered version does not have time limit About Boxoft All to AMR Converter

More information

Script Host 2.0 Developer's Guide

Script Host 2.0 Developer's Guide _ Microsoft icrosoft Script Host 2.0 Developer's Guide Günter Born Introduction xv parti Introduction to the World of Script Programming chapter i Introduction to Windows Script Host 3 WHAT YOU CAN DO

More information

Download, Install and Use Winzip

Download, Install and Use Winzip Download, Install and Use Winzip Something that you are frequently asked to do (particularly if you are in one of my classes) is to either 'zip' or 'unzip' a file or folders. Invariably, when I ask people

More information

MonitorPack Guard deployment

MonitorPack Guard deployment MonitorPack Guard deployment Table of contents 1 - Download the latest version... 2 2 - Check the presence of Framework 3.5... 2 3 - Install MonitorPack Guard... 4 4 - Data Execution Prevention... 5 5

More information

Lesson 3 Transcript: Part 2 of 2 Tools & Scripting

Lesson 3 Transcript: Part 2 of 2 Tools & Scripting Lesson 3 Transcript: Part 2 of 2 Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the DB2 on Campus Lecture Series. Today we are going to talk about tools and scripting. And this is part 2 of 2

More information

WinINSTALL 9.0 Master Document to be used as an internal resource only

WinINSTALL 9.0 Master Document to be used as an internal resource only INDEX Create basic package Editing your package How to add serials and keys Action codes Define the custom action - Pre-processing during installation - Post-processing during installation - Pre-processing

More information

Part 1:Updating MOM 2005 Scripts for Operations Manager 2007

Part 1:Updating MOM 2005 Scripts for Operations Manager 2007 Part 1:Updating MOM 2005 Scripts for Operations Manager 2007 First installment in the System Center Forum Scripting Series Author: Pete Zerger, MS MVP-Operations Manager Version: 1.0 January 2, 2008 Some

More information

The Item_Master_addin.xlam is an Excel add-in file used to provide additional features to assist during plan development.

The Item_Master_addin.xlam is an Excel add-in file used to provide additional features to assist during plan development. Name: Tested Excel Version: Compatible Excel Version: Item_Master_addin.xlam Microsoft Excel 2013, 32bit version Microsoft Excel 2007 and up (32bit and 64 bit versions) Description The Item_Master_addin.xlam

More information

Alternatives To Custom Dialog Box

Alternatives To Custom Dialog Box Alternatives To Custom Dialog Box Contents VBA Input Box Syntax & Function The Excel InputBox method Syntax The VBA MsgBox Function The Excel GetOpenFilename Method The Excel GetSaveAsFilename Method Reference

More information

TIPS & TRICKS SERIES

TIPS & TRICKS SERIES TIPS & TRICKS SERIES TIPS & TRICKS OFFICE XP MACROS C o m p i l e d b y MUHAMMAD AJMAL BEIG NAZ TIPS & TRICKS OFFICE XP MACROS P a g e 1 CONTENTS Table of Contents OFFICE XP MACROS 3 ABOUT MACROS 3 MICROSOFT

More information

CinemaDNG RAW Workflow for Blackmagic Cameras

CinemaDNG RAW Workflow for Blackmagic Cameras CinemaDNG RAW Workflow for Blackmagic Cameras Blackmagic Cameras are capable of shooting to two types of Dynamic Range : Video and Film. Each option can be recorded in Apple ProRes 422 or CinemaDNG RAW

More information

How to detect the CPU and OS Architecture

How to detect the CPU and OS Architecture How to detect the CPU and OS Architecture The client I am working for now, has both XP and Windows 7. XP is 32 bits and Windows 7 is 64 bits. To avoid that I have to make the packages twice, I make both

More information

Content: Step-by-Step instructions to duplicate MS Outlook files to a file. Purpose: To move content from one computer to another.

Content: Step-by-Step instructions to duplicate MS Outlook  files to a file. Purpose: To move  content from one computer to another. Content: Step-by-Step instructions to duplicate MS Outlook e-mail files to a file. Purpose: To move e-mail content from one computer to another. Definitions: Old Computer == the computer you want to copy

More information

EyeFrame - easy convert video to and from Lightworks with time code, reel name and proxies Posted by tin2tin - 15 Sep :42

EyeFrame - easy convert video to and from Lightworks with time code, reel name and proxies Posted by tin2tin - 15 Sep :42 EyeFrame - easy convert video to and from Lightworks with time code, reel name and proxies Posted by tin2tin - 15 Sep 2012 16:42 EyeFrame ConverterConvert videos for easy import in Lightworks and lag-free

More information

Lesson 1. Importing and Organizing Footage using Premiere Pro CS3- CS5

Lesson 1. Importing and Organizing Footage using Premiere Pro CS3- CS5 Lesson 1 Importing and Organizing Footage using Premiere Pro CS3- CS5 When working with a video editor the video source will come from either a capturing process or importing video clips into the editing

More information

What will be the ideal workflow for Blackmagic+Lightworks+DaVinci Resolve?

What will be the ideal workflow for Blackmagic+Lightworks+DaVinci Resolve? Blackmagic Cinema Camera with Lightworks Posted by stajan - 04 Jun 2012 06:20 I am planning to shoot an Indian language Movie with Blackmagic cinema camera & Lightworks for Editing.I read an article that

More information

Welcome To VTL Course

Welcome To VTL Course Welcome To VTL Course VertexFX Trading Language Course Hybrid Solutions www.hybrid-solutions.com Contents 1 Hot Tips 2 Introduction 3 Programming structure 4 VTL Client Script 5 VTL Server Script Hot Tip

More information

'Get the old path from the registry value we write using this script stroldpath = GetOldPath()

'Get the old path from the registry value we write using this script stroldpath = GetOldPath() ' Folder Migration ' Will correct recent files using the registry and.lnk files on the desktop ' The script is designed to be used as a logon script in an environment where all folders are redirected to

More information

A shell can be used in one of two ways:

A shell can be used in one of two ways: Shell Scripting 1 A shell can be used in one of two ways: A command interpreter, used interactively A programming language, to write shell scripts (your own custom commands) 2 If we have a set of commands

More information

No audio yes video Posted by manemane - 29 Jan :42

No audio yes video Posted by manemane - 29 Jan :42 No audio yes video Posted by manemane - 29 Jan 2018 18:42 Hi guys! When I import my file video recordered by the YI action cam 4K+, lightworks from some time cut the audio trace. I can see only the video

More information

WHITEPAPER DEEP FREEZE ENTERPRISE PATCH MANAGEMENT

WHITEPAPER DEEP FREEZE ENTERPRISE PATCH MANAGEMENT TM WHITEPAPER DEEP FREEZE ENTERPRISE PATCH MANAGEMENT Content Page Introduction...03 Scheduled Patch Maintenance...03 Scheduling Windows Updates...04 Scheduling Windows Updates using a Windows Update Workstation

More information

Ferruh Mavituna

Ferruh Mavituna ONE CLICK OWNAGE Ferruh Mavituna ferruh@mavitunasecurity.com http://www.mavitunasecurity.com Idea of this attack is very simple. Getting a reverse shell from an SQL Injection with one request without using

More information

Part 2: Custom Performance Objects in Runtime Scripts

Part 2: Custom Performance Objects in Runtime Scripts Part 2: Custom Performance Objects in Runtime Scripts Second installment in the System Center Forum Operations Manager 2007 Scripting Series Author: Pete Zerger, MS MVP-Operations Manager Version: 1.0

More information

Shell Scripting. Todd Kelley CST8207 Todd Kelley 1

Shell Scripting. Todd Kelley CST8207 Todd Kelley 1 Shell Scripting Todd Kelley kelleyt@algonquincollege.com CST8207 Todd Kelley 1 If we have a set of commands that we want to run on a regular basis, we could write a script A script acts as a Linux command,

More information

Basler Cameras SILENTLY INSTALLING SELECTED PYLON FEATURES APPLICATION NOTES

Basler Cameras SILENTLY INSTALLING SELECTED PYLON FEATURES APPLICATION NOTES DRAFT Basler Cameras SILENTLY INSTALLING SELECTED PYLON FEATURES APPLICATION NOTES Document Number: AW000846 Version: 05 Language: 000 (English) Release Date: 7 August 2013 Software Version: 4 Contacting

More information

WORKING WITH WINDOWS SHELL

WORKING WITH WINDOWS SHELL Chapter 11 Scripting Quicktest Professional Page 1 WORKING WITH WINDOWS SHELL32... 3 MANAGING DISK QUOTAS ON THE NTFS FILE SYSTEM... 4 MICROSOFT.DIDISKQUOTAUSER OBJECT... 4 DIDiskQuotaUser.AccountContainerName

More information

I apologize if this has been asked before, but I've been searching the forums for the past few hours and haven't been able to find anything.

I apologize if this has been asked before, but I've been searching the forums for the past few hours and haven't been able to find anything. 5.1 Surround Sound Posted by Breudayael - 11 Jun 2014 03:29 I apologize if this has been asked before, but I've been searching the forums for the past few hours and haven't been able to find anything.

More information

Now that you know how to handle your file system, take a look at

Now that you know how to handle your file system, take a look at Chapter 9 Mastering Links In This Chapter Learn more about the power of shortcut files Createand modify shortcut files by script Search for invalid links and duplicating keyboard shortcuts Change shortcut

More information

Is there any plug-in to work with Lightworks that would do motion stabilization in LW?

Is there any plug-in to work with Lightworks that would do motion stabilization in LW? Motion stabilization plug-in for LW? Posted by Danas_Anis - 04 Sep 2013 12:29 Hello! Is there any plug-in to work with Lightworks that would do motion stabilization in LW? Posted by ianconry - 05 Sep 2013

More information

Where to Start? Looking at this naively, you'll need to. You'll need to do this for each line of input

Where to Start? Looking at this naively, you'll need to. You'll need to do this for each line of input Parsing Where to Start? Looking at this naively, you'll need to Setup Print prompt Read in user input Transform it to commands, files, and symbols Match to a pattern Execute command Print results Cleanup

More information

FastTracker. Version 1.0 QuickStart Guide

FastTracker. Version 1.0 QuickStart Guide FastTracker Version 1.0 QuickStart Guide 1 Overview The Facilis FastTracker is a server and client application for cataloging, searching and viewing any media type within the Facilis TerraBlock Shared

More information

FmPro Migrator Developer Edition - Table Consolidation Procedure

FmPro Migrator Developer Edition - Table Consolidation Procedure FmPro Migrator Developer Edition - Table Consolidation Procedure FmPro Migrator Developer Edition - Table Consolidation Procedure 1 Installation 1.1 Installation Tips 5 2 Step 1 2.1 Step 1 - Import Table

More information

IFA/QFN VBA Tutorial Notes prepared by Keith Wong

IFA/QFN VBA Tutorial Notes prepared by Keith Wong IFA/QFN VBA Tutorial Notes prepared by Keith Wong Chapter 5: Excel Object Model 5-1: Object Browser The Excel Object Model contains thousands of pre-defined classes and constants. You can view them through

More information

"Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug :14

Missing log in edit viewer, all media gone Posted by prodeuser - 17 Aug :14 "Missing log" in edit viewer, all media gone Posted by prodeuser - 17 Aug 2013 06:14 So, this has happened a couple of times now. I am a new Lightworks user and have been doing some testing. As I increase

More information

Notes for short talks on Lightroom for DPCA - Don Dement 10/11/ :38 PM

Notes for short talks on Lightroom for DPCA - Don Dement 10/11/ :38 PM Notes for short talks on Lightroom for DPCA - Don Dement 10/11/2016 10:38 PM Getting started with Import: You must import image files into Lightroom before you can work with them in any manner. The basic

More information

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson

Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Tech-Talk Using the PATROL Agent COM Server August 1999 Authored By: Eric Anderson Introduction Among the many new features of PATROL version 3.3, is support for Microsoft s Component Object Model (COM).

More information

Software. Tutorials and resources for specific editing software and common tools. Adobe After Effects. Utilising Depth Maps in After Effects

Software. Tutorials and resources for specific editing software and common tools. Adobe After Effects. Utilising Depth Maps in After Effects Software Tutorials and resources for specific editing software and common tools. Adobe After Effects Utilising Depth Maps in After Effects Magix/Sony Vegas Pro Tools Uncompressing Prerecorded Clips using

More information

Manual Script Windows Batch If Condition. Statement Examples >>>CLICK HERE<<<

Manual Script Windows Batch If Condition. Statement Examples >>>CLICK HERE<<< Manual Script Windows Batch If Condition Statement Examples IF DEFINED MyVar (ECHO MyVar IS defined) ELSE (ECHO MyVar is NOT defined). The following code, which works in batch files for all MS-DOS, Windows.

More information

Slow Motion with photo morphing software Posted by juhartik - 11 May :05

Slow Motion with photo morphing software Posted by juhartik - 11 May :05 Slow Motion with photo morphing software Posted by juhartik - 11 May 2011 06:05 There has been some discussion(s) in this forum how to make slow motion effect. Most of the NLEs does not offer any tool

More information

Multi-User Importing Instructions from an Existing ACT! Database

Multi-User Importing Instructions from an Existing ACT! Database Multi-User Importing Instructions from an Existing ACT! Database Thank you for purchasing an Act4Advisors Network License. These instructions are designed to help you import data from an existing ACT!

More information

Konark - Writing a KONARK Sample Application

Konark - Writing a KONARK Sample Application icta.ufl.edu http://www.icta.ufl.edu/konarkapp.htm Konark - Writing a KONARK Sample Application We are now going to go through some steps to make a sample application. Hopefully I can shed some insight

More information

'... '... '... Module created: unknown '... Proj finished: March 21, 2012 '... '...

'... '... '... Module created: unknown '... Proj finished: March 21, 2012 '... '... ThisWorkbook - 1 If g_bdebugmode Then '... Module created: unknown '... Proj finished: March 21, 2012 '************************* CLASS-LEVEL DECLARATIONS ************************** Option Explicit Option

More information

FAQ: Crawling, indexing & ranking(google Webmaster Help)

FAQ: Crawling, indexing & ranking(google Webmaster Help) FAQ: Crawling, indexing & ranking(google Webmaster Help) #contact-google Q: How can I contact someone at Google about my site's performance? A: Our forum is the place to do it! Googlers regularly read

More information

CS 170 Java Tools. Step 1: Got Java?

CS 170 Java Tools. Step 1: Got Java? CS 170 Java Tools This summer in CS 170 we'll be using the DrJava Integrated Development Environment. You're free to use other tools but this is what you'll use on your programming exams, so you'll need

More information

Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May :02

Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May :02 Unable to import. ive read the docs/searched forums Posted by BuddyElkor - 05 May 2018 21:02 Using trial version. Im unable to import anything. Ive tried converting to mp4/aac/mp3/mpg2(ive tried many more

More information

'Attribute_value = objarguments(0) 'String representing the secedit attribute to test

'Attribute_value = objarguments(0) 'String representing the secedit attribute to test ----------------------- 'Use Case: #? : Secedit Test 'Goal: Tests the attributes of one or more Security settings available within Secedit 'relation document :????.doc 'Version: 1 Feb 3, 2006 'Author:

More information

Report Commander 2 User Guide

Report Commander 2 User Guide Report Commander 2 User Guide Report Commander 2.5 Generated 6/26/2017 Copyright 2017 Arcana Development, LLC Note: This document is generated based on the online help. Some content may not display fully

More information

Off Board Vision Processing in Java

Off Board Vision Processing in Java Off Board Vision Processing in Java This article describes how to get OpenCV, the WPILib Vision library, and NetworkTables, and how to build Java vision targeting programs that run on coprocessors that

More information

Adevice driver is a tiny chunk of programming code that

Adevice driver is a tiny chunk of programming code that Device Driver Tweaks CHAPTER W1 Adevice driver is a tiny chunk of programming code that serves as a kind of middleman between Windows and a particular device. For example, if Windows needs a device to

More information

Microsoft Excel Level 2

Microsoft Excel Level 2 Microsoft Excel Level 2 Table of Contents Chapter 1 Working with Excel Templates... 5 What is a Template?... 5 I. Opening a Template... 5 II. Using a Template... 5 III. Creating a Template... 6 Chapter

More information

2004 F250 Stereo Upgrade

2004 F250 Stereo Upgrade 1 of 17 3/26/2011 11:16 PM Ford Super Duty 4x4 Stereo Upgrade 2004 F250 4x4 XLT Sport Back to 2004 F250 Main Page ** UPDATE 09/03/09 ** PIE auxilary input adapter! Click Here for a PDF version of this

More information

'Broadcast Quality' Workflow with Timecode for 'Prosumer' Camcorders and DSLRS - (LW Pro) Posted by ozsteam - 13 Sep :56

'Broadcast Quality' Workflow with Timecode for 'Prosumer' Camcorders and DSLRS - (LW Pro) Posted by ozsteam - 13 Sep :56 'Broadcast Quality' Workflow with Timecode for 'Prosumer' Camcorders and DSLRS - (LW Pro) Posted by ozsteam - 13 Sep 2012 07:56 Here is one successful transcode workflow option using the recently released

More information

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6)

DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) Technology & Information Management Instructor: Michael Kremer, Ph.D. Database Program: Microsoft Access Series DATABASE AUTOMATION USING VBA (ADVANCED MICROSOFT ACCESS, X405.6) AGENDA 3. Executing VBA

More information

How To Changing Album Name On Macbook Pro Home Folder

How To Changing Album Name On Macbook Pro Home Folder How To Changing Album Name On Macbook Pro Home Folder One or more iphoto album names are not listed in the Photos tab in itunes. Check to see if you've accidentally moved your iphoto Library file to another

More information

MITOCW ocw f99-lec07_300k

MITOCW ocw f99-lec07_300k MITOCW ocw-18.06-f99-lec07_300k OK, here's linear algebra lecture seven. I've been talking about vector spaces and specially the null space of a matrix and the column space of a matrix. What's in those

More information

Topic 4D: Import and Export Contacts

Topic 4D: Import and Export Contacts Topic 4D: Import and Export Contacts If a corporation merges with another corporation it may become necessary to add the contacts to the new merged companies contact folder. This can be done by Importing

More information

How to save money on Oracle Java Client Licenses

How to save money on Oracle Java Client Licenses How to save money on Oracle Java Client Licenses Oracle has multiple software for Java Clients. You can use the Enterprise version (JEE), but also the Runtime Engine (JRE). There is one big difference:

More information

LIQUID FOOT+ SERIES MIDI FOOT CONTROLLERS. FIRMWARE PLATFORM V6.00beta. This documentation will be updated

LIQUID FOOT+ SERIES MIDI FOOT CONTROLLERS. FIRMWARE PLATFORM V6.00beta. This documentation will be updated LIQUID FOOT+ SERIES MIDI FOOT CONTROLLERS FIRMWARE PLATFORM V6.00beta This documentation will be updated REV 1.0 - NOV 3, 2018 Table of Contents V6.00 BETA FIRMWARE INSTALLATION NOTES... 3 V6.00 System

More information

Tvheadend - Bug #3630 pipe doesn't work on mux url but works on command line

Tvheadend - Bug #3630 pipe doesn't work on mux url but works on command line Tvheadend - Bug #3630 pipe doesn't work on mux url but works on command line 2016-03-15 01:50 - Jose Silva Status: Invalid Start date: 2016-03-15 Priority: Normal Due date: Assignee: % Done: 0% Category:

More information

Unable to import a video file into Lightworks Posted by Slashbuddy24-03 Mar :50

Unable to import a video file into Lightworks Posted by Slashbuddy24-03 Mar :50 Unable to import a video file into Lightworks Posted by Slashbuddy24-03 Mar 2016 23:50 Hello, This is my first time posting on the Lightworks forums and I did not think I would ever have to get to this

More information

DPRSplit File Splitter for Canon 5D Mark IV / Dual Pixel Raw

DPRSplit File Splitter for Canon 5D Mark IV / Dual Pixel Raw DPRSplit File Splitter for Canon 5D Mark IV / Dual Pixel Raw Brief user manual Version 0.8 Public Beta What this application is for: Canon 5D Mark IV's sensor has a somewhat unusual pixel arrangement:

More information

AVL Loom Configuration Tool

AVL Loom Configuration Tool AVL Loom Configuration Tool This program is only for those computers running the Windows operating system. It will not run on a Mac. It is intended to be a very simple application that will not run into

More information

HSFW dll Documentation

HSFW dll Documentation HSFW dll Documentation 1 / 17 Table of contents Introduction... 3 FilterWheels Class... 4 Properties... 4 FilterWheelList... 4 AttachedDeviceCount... 4 API_Diagnostics... 4 Events... 5 FilterWheelRemoved...

More information

NetAnnoy is just another piece software from Andreas Jalsøe -

NetAnnoy is just another piece software from Andreas Jalsøe - NetAnnoy is just another piece software from Andreas Jalsøe - http://www.jalsoedesign.net Keep in mind that this manual was made for NetAnnoy1.0 and NOT 2.5 Table of contents Notice / Rights...3 Forewords

More information

Writing and Running Programs

Writing and Running Programs Introduction to Python Writing and Running Programs Working with Lab Files These instructions take you through the steps of writing and running your first program, as well as using the lab files in our

More information

Windows 7 Will Not Load On My Computer Says Its

Windows 7 Will Not Load On My Computer Says Its Windows 7 Will Not Load On My Computer Says Its Hey Guys i been working on a customers computer for a couple days now, did a virus that although all the settings seemed right and it says I was connected

More information

An Introduction to Rational RequisitePro Extensibility

An Introduction to Rational RequisitePro Extensibility Copyright Rational Software 2003 http://www.therationaledge.com/content/jun_03/rdn.jsp An Introduction to Rational RequisitePro Extensibility by Mark Goossen Editor's Note: Each month, we will feature

More information

CS 1110 SPRING 2016: GETTING STARTED (Jan 27-28) First Name: Last Name: NetID:

CS 1110 SPRING 2016: GETTING STARTED (Jan 27-28)   First Name: Last Name: NetID: CS 1110 SPRING 2016: GETTING STARTED (Jan 27-28) http://www.cs.cornell.edu/courses/cs1110/2016sp/labs/lab01/lab01.pdf First Name: Last Name: NetID: Goals. Learning a computer language is a lot like learning

More information

Slide 1 CS 170 Java Programming 1 Testing Karel

Slide 1 CS 170 Java Programming 1 Testing Karel CS 170 Java Programming 1 Testing Karel Introducing Unit Tests to Karel's World Slide 1 CS 170 Java Programming 1 Testing Karel Hi Everybody. This is the CS 170, Java Programming 1 lecture, Testing Karel.

More information

bash Args, Signals, Functions Administrative Shell Scripting COMP2101 Fall 2017

bash Args, Signals, Functions Administrative Shell Scripting COMP2101 Fall 2017 bash Args, Signals, Functions Administrative Shell Scripting COMP2101 Fall 2017 Positional Arguments It is quite common to allow the user of a script to specify what the script is to operate on (e.g. a

More information

Hazel a tool for automating your Mac Introduction Basic setup The Folders tab The Trash tab The Info tab...

Hazel a tool for automating your Mac Introduction Basic setup The Folders tab The Trash tab The Info tab... Table of Contents Hazel a tool for automating your Mac...2 1 Introduction...2 2 Basic setup... 2 2.1 The Folders tab... 2 2.2 The Trash tab... 5 2.3 The Info tab...6 3 Use Hazel to manage your digital

More information

#44. Accelerate Skype Using Your Keyboard Make Skype fly, by speeding up common tasks with key sequences and hotkeys.

#44. Accelerate Skype Using Your Keyboard Make Skype fly, by speeding up common tasks with key sequences and hotkeys. Accelerate Skype Using Your Keyboard #44 H A C K #44 Hack Accelerate Skype Using Your Keyboard Make Skype fly, by speeding up common tasks with key sequences and hotkeys. #44 Works with: Windows version

More information

Modern Cookie Stuffing

Modern Cookie Stuffing Modern Cookie Stuffing A step-by-step guide on modern cookie stuffing techniques that actually work Before you begin to read this, please be aware that this e-book is not for the lazy internet marketer.

More information

Automation Engine Scripting Samples

Automation Engine Scripting Samples Automation Engine 14.1.1 Scripting Samples 06-2016 Automation Engine Contents 1. Read Me First... 3 2. AppleScript Code Samples... 4 3. Shell Script Code Sample... 5 4. Windows Script Code Samples...6

More information

Statements and Operators

Statements and Operators Statements and Operators Old Content - visit altium.com/documentation Mod ifi ed by Rob Eva ns on Feb 15, 201 7 Parent page: EnableBasic Enable Basic Statements Do...Loop Conditional statement that repeats

More information

How to rip, transcode, and prepare a DVD for network streaming

How to rip, transcode, and prepare a DVD for network streaming How to rip, transcode, and prepare a DVD for network streaming Step 1: (Decrypting original DVD) Use DVD Decrypter http://www.dvddecrypter.org.uk/setupdvddecrypter_3.5.4.0.exe]http://www.dvddecrypter.org.uk/set

More information

Essentials for Scientific Computing: Bash Shell Scripting Day 3

Essentials for Scientific Computing: Bash Shell Scripting Day 3 Essentials for Scientific Computing: Bash Shell Scripting Day 3 Ershaad Ahamed TUE-CMS, JNCASR May 2012 1 Introduction In the previous sessions, you have been using basic commands in the shell. The bash

More information

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9.

Basic Concepts. Launching MultiAd Creator. To Create an Alias. file://c:\documents and Settings\Gary Horrie\Local Settings\Temp\~hh81F9. Page 1 of 71 This section describes several common tasks that you'll need to know in order to use Creator successfully. Examples include launching Creator and opening, saving and closing Creator documents.

More information

Argument 1 = A number (0, 1, 2, 3) that will be used as the exit code the script will exit with (this is how Nagios determines the status)

Argument 1 = A number (0, 1, 2, 3) that will be used as the exit code the script will exit with (this is how Nagios determines the status) Nagios XI - Using Scripts / Plugins With NSClient++ Article Number: 58 Rating: Unrated Last Updated: Wed, Jul 19, 017 at 11:59 PM O ve r vie w This KB article explains how to use external scripts / plugins

More information

Retrieve the shortcut properties from all the shortcuts in the Start Menu

Retrieve the shortcut properties from all the shortcuts in the Start Menu Retrieve the shortcut properties from all the shortcuts in the Start Menu As a packager it is needed to retrieve the shortcut properties. What executable is used in each shortcut. On MS Forums I started

More information

at² - BlackStar Cinapsis for Cinema 4D

at² - BlackStar Cinapsis for Cinema 4D 1 Copyright and Disclaimer General Information at² (former BlackStar Solutions) does not offer any warranties arising by the behaviour of the Cinapsis Plugin beyond the legal minimal warranty. This applies

More information

Windows Script Host Fundamentals

Windows Script Host Fundamentals O N E Windows Script Host Fundamentals 1 The Windows Script Host, or WSH for short, is one of the most powerful and useful parts of the Windows operating system. Strangely enough, it is also one of least

More information

Tutorial Windows Media Player 11 Vista 64 Bit Chip

Tutorial Windows Media Player 11 Vista 64 Bit Chip Tutorial Windows Media Player 11 Vista 64 Bit Chip Media Player Classic - Home Cinema (64 Bit) 1.7.9 Deutsch Free-Download kostenlos. 64-Bit- Version der beliebten Windows Media Player-Alternative. Windows

More information

Frequently Asked Questions About the Unitor 8 Preference Pane

Frequently Asked Questions About the Unitor 8 Preference Pane Frequently Asked Questions About the Unitor 8 Preference Pane Will this work with my mac? How do I tell what kind of mac I have? How do I tell if I'm running Leopard? Why is your preference pane only for

More information

Chapter 5. window, so the built-in communication paths use the MsgBox and Popup functions.

Chapter 5. window, so the built-in communication paths use the MsgBox and Popup functions. Chapter 5 Using Internet Explorer as the Output Window In This Chapter Find out the secret Internet Explorer scripting commands Open and size the IE window by script Write text into the IE window Change

More information

Oracle Cloud. Content and Experience Cloud ios Mobile Help E

Oracle Cloud. Content and Experience Cloud ios Mobile Help E Oracle Cloud Content and Experience Cloud ios Mobile Help E82090-01 February 2017 Oracle Cloud Content and Experience Cloud ios Mobile Help, E82090-01 Copyright 2017, 2017, Oracle and/or its affiliates.

More information

Use Do Until to break links

Use Do Until to break links Excel magazines, seminars, add-ons, support and bespoke Excel Systems Edition 0 January 00 IN THIS EDITION Use Do Until to break links Edition 0 Jan 00 >>Files: BreakLinks.xls, AusData.xls, NZData.xls

More information

Troubleshooting the scheduled Patron XML Update v9.0, v9.5, and v9.8

Troubleshooting the scheduled Patron XML Update v9.0, v9.5, and v9.8 Troubleshooting the scheduled Patron XML Update v9.0, v9.5, and v9.8 The scheduled Patron XML Update process uses batch files and Windows scheduling to take a CSV file of patron data from the student management

More information

The QuickCalc BASIC User Interface

The QuickCalc BASIC User Interface The QuickCalc BASIC User Interface Running programs in the Windows Graphic User Interface (GUI) mode. The GUI mode is far superior to running in the CONSOLE mode. The most-used functions are on buttons,

More information

COMP 202 Java in one week

COMP 202 Java in one week COMP 202 Java in one week... Continued CONTENTS: Return to material from previous lecture At-home programming exercises Please Do Ask Questions It's perfectly normal not to understand everything Most of

More information