6 sonuçtan 1 ile 6 arası

Konu: Script nerede yazılıyor

  1. #1

    Standart Script nerede yazılıyor

    Script hangi programda hazırlanıyor. uzantısı vbs. Visual basic demi. Visual Basic 6.0 da bunu hazırlayabilirmiyim. Nasıl hazırlarım. çalışıp çalışmadığı nasıl kontrol ederim
     

  2. #2

    Standart Ynt: Script nerede yazılıyor

    Merhaba,

    Farkli amaclar icin farkli dillerde script ler hazirlayabilirsiniz. En sık kullanılanı visual basic script diyebilirim. Bunun disinda icrosoft yapisi icin script yazacaksaniz scriptomatic i oneririm. Ayrica wikipedia oldukca detayli bilgi vermiş:

    Scripting language
    From Wikipedia, the free encyclopedia
    Jump to: navigation, search
    Scripting redirects here. For other uses, see script.
    Scripting languages (commonly called scripting programming languages or script languages) are computer programming languages that are typically interpreted and can be typed directly from a keyboard. Thus, scripts are often distinguished from programs, because programs are converted permanently into binary executable files (i.e., zeros and ones) before they are run. Scripts remain in their original form and are interpreted command-by-command each time they are run.[1][2] Scripts were created to shorten the traditional edit-compile-link-run process. The name 'script' is derived from the written script of the performing arts, in which dialogue is set down to be interpreted by actors and actresses--the programs. Early script languages were often called batch languages or job control languages. Scripting languages can also be compiled, but because interpreters are simpler to write than compilers, they are interpreted more often than they are compiled.

    The term scripting language is not technical, though embedding and dependence on a larger system are usually criteria. In computer games, scripts extend game logic, tailoring the game engine to particular game data. Scripts also make applications programmable from within, so that repetitive tasks can be quickly automated. Of course, not every scripting system that grows beyond its original design and delegation acquires a new name. Full-blown in-game languages such as UnrealScript exist, and JavaScript is a very influential standard, supported by virtually every browser on the market.

    Description
    Computer languages are created for varying purposes and tasks — different kinds and styles of programming. One common programming task is known as scripting, or connecting diverse pre-existing components to accomplish a new related task. Those languages which are suited to scripting are typically called scripting languages. Many languages for this purpose have common properties: they favor rapid development over efficiency of execution; they are normally implemented with interpreters rather than compilers; and they are strong at communicating with program components written in other languages.

    Many scripting languages emerged as tools for executing one-off tasks, particularly in system administration. One way of looking at scripts is as "glue" that puts several components together; thus they are widely used for creating graphical user interfaces or executing a series of commands that might otherwise have to be entered interactively through keyboard at the command prompt. The operating system usually offers some type of scripting language by default, widely known as a shell script language.

    Other scripting languages are oriented toward empowering end users to write and debug short, simple, and possibly domain-specific programs. The primary aim of the scripting language is to insulate the user from the intricacies of more formal development and from usage of programming tools developed for an entirely different class of developer. Another aim of the scripting language is to make it easy for a user with domain knowledge (an engineer, statistician, economist, etc.) to accomplish given tasks.

    Scripts are typically stored only in their plain text form (as ASCII) and interpreted, or compiled each time prior to being invoked.

    Some scripting languages are designed for a specific domain, but often it is possible to write more general programs in that language. In many large-scale projects, a scripting language and a lower level programming language are used together, each lending its particular strengths to solve specific problems. Scripting languages are often designed for interactive use, having many commands that can execute individually, and often have very high level operations (for example, in the classic UNIX shell (sh), most operations are programs themselves).

    Such high level commands simplify the process of writing code. Programming features such as automatic memory management and bounds checking can be taken for granted. In a 'lower level' or non-scripting language, managing memory and variables, and creating data structures tends to consume more programmer effort and lines of code to complete a given task. In some situations, this is well worth it for the resulting fine-grained control. The scripter typically has less flexibility to optimize a program for speed or to conserve memory.

    For the reasons noted above, it is usually faster to program in a scripting language, and script files are typically much smaller than, for example, equivalent C program files. The flip side can be a performance penalty: scripting languages, often interpreted, may be significantly slower to execute and might consume more memory when running. In some cases, however, e.g. with small scripts of some tens of lines, the write-time advantage far outweighs the run-time disadvantage. Also, this argument gets stronger with rising programmer salaries and falling hardware costs.

    However, the boundary between scripting languages and regular programming languages tends to be vague, and is blurring ever more with the emergence of new languages and integrations in this fast-changing area. In some scripting languages, an experienced programmer can accomplish a good deal of optimization if they choose. And, in general, it is possible to write a script in any language (including C or assembly language). This is not recommended, however, for scripting languages whose interpreters are to be marketed, such as languages for macros or for web development.


    Ayrica Microsoft tarafinda asagidaki makale yardimci olacaktir;

    Scripting: Your First Steps
    http://www.microsoft.com/technet/scr...irststeps.mspx

    Emre.
    Emre Aydın
    MVP | Office 365 | Since 2006
    MCT | Since 2005
    MCSD | Azure Solutions Architect
    MCSE | Private Cloud, Messaging, Communication, Server Infrastructure, Productivity, Platform
    MCSA | Office 365, Server 2012, Cloud Platform
    MCTS | Developing Azure Solutions, Implementing Azure Infrastructure, Architecting Microsoft Azure Solutions, SAM
    P-Seller
    Intelligent Cloud | EMS
    Web : www.mshowto.org
    Mail : emre.aydin [@] mshowto.org
    Twitter : https://twitter.com/emreaydn
    Linkedin : tr.linkedin.com/in/emreaydn

  3. #3

    Standart Ynt: Script nerede yazılıyor

    bununla ilgili bir örnek uygulama nasıl yaapbilirim.
     

  4. #4

    Standart Ynt: Script nerede yazılıyor

    Scriptomatic i bir denemenizi oneririm.

    Emre.
    Emre Aydın
    MVP | Office 365 | Since 2006
    MCT | Since 2005
    MCSD | Azure Solutions Architect
    MCSE | Private Cloud, Messaging, Communication, Server Infrastructure, Productivity, Platform
    MCSA | Office 365, Server 2012, Cloud Platform
    MCTS | Developing Azure Solutions, Implementing Azure Infrastructure, Architecting Microsoft Azure Solutions, SAM
    P-Seller
    Intelligent Cloud | EMS
    Web : www.mshowto.org
    Mail : emre.aydin [@] mshowto.org
    Twitter : https://twitter.com/emreaydn
    Linkedin : tr.linkedin.com/in/emreaydn

  5. #5

    Standart Ynt: Script nerede yazılıyor

    [quote author=ekinonline link=topic=370.msg1254#msg1254 date=1178544396]
    bununla ilgili bir örnek uygulama nasıl yaapbilirim.
    [/quote]

    Bu konu programcılık konusuna doğru gider

    Desktop'ta yeni text document oluşturun. İçine aşağıdakini yazın.
    msgbox "Deneme"
    kaydedin ve uzantısını .vbs yapın. Çalıştırın.

    Saygılar
     

  6. #6

    Standart Ynt: Script nerede yazılıyor

    çalıştırdım tşkkür ederim script komutlarını nereden bulabilirim
     

Benzer Konular

  1. Vb Script ile Kullanıcı Kapatmak
    By mehmet ucar in forum Server2003
    Cevaplar: 3
    Son Mesaj: 12-30-2009, 05:15 PM
  2. Startup Script'i Hk.
    By imposible in forum Server2003
    Cevaplar: 1
    Son Mesaj: 08-08-2008, 10:33 AM
  3. Scheduled Task Script
    By social in forum Server2003
    Cevaplar: 1
    Son Mesaj: 07-20-2008, 10:41 AM
  4. script ile kullanıcı tanımlan
    By ekinonline in forum Server2003
    Cevaplar: 9
    Son Mesaj: 06-08-2008, 01:12 PM
  5. xp de logoff script..
    By davudows in forum Microsoft Windows
    Cevaplar: 3
    Son Mesaj: 10-28-2006, 12:20 AM

Yetkileriniz

  • Konu Açma Yetkiniz Yok
  • Cevap Yazma Yetkiniz Yok
  • Eklenti Yükleme Yetkiniz Yok
  • Mesajınızı Değiştirme Yetkiniz Yok
  •  
Hakkımızda
MSHOWTO, herhangi bir firma ya da kuruluş ile bağı olmayan bağımsız teknik bir topluluktur.
Sosyal Medya Linklerimiz