.SCP - File Extension for RAS Script Files

Q

What is SCP? SCP, short name for Script, is used as the file extension for RAS Script files. .SCP files are text files that use to store RAS (Remote Access Service) automation script. See the sample .SCP file included below.

✍: FYIcenter.com

A

File Extension: .SCP

MIME Type: text/plain

File Content: RAS Script

.SCP files are RAS Script files, that use to store RAS (Remote Access Service) automation script. Here is a sample .SCP RAS Script file, pppmenu.scp:

;
; This is a script file that demonstrates how
; to establish a PPP connection with a host
; that uses a menu system.
;
; A script file must have a 'main' procedure.
; All script execution starts with this 'main'
; procedure.
;
; Main entry point to script
;
proc main

   ; Change these variables to customize for your
   ; specific Internet service provider

   integer nTries = 3

   ; This is the login prompt and timeout values

   string szLogin = "username:"
   integer nLoginTimeout = 3

   ; This is the password prompt and timeout values

   string szPW = "password:"
   integer nPWTimeout = 3

   ; This is the prompt once your password is verified

   string szPrompt = "annex:"
...

.SCP RAS Script file sample: Click sample.scp to download.

Since .SCP files are in text format, you can use Notepad or any text editor to create or modify them. No special software is needed.

For for information on how to use .SCP RAS Script files, see links below:

2012-11-08, 5905👍, 0💬