Epstein Files Full PDF

CLICK HERE
Technopedia Center
PMB University Brochure
Faculty of Engineering and Computer Science
S1 Informatics S1 Information Systems S1 Information Technology S1 Computer Engineering S1 Electrical Engineering S1 Civil Engineering

faculty of Economics and Business
S1 Management S1 Accountancy

Faculty of Letters and Educational Sciences
S1 English literature S1 English language education S1 Mathematics education S1 Sports Education
teknopedia

  • Registerasi
  • Brosur UTI
  • Kip Scholarship Information
  • Performance
Flag Counter
  1. World Encyclopedia
  2. Windows service - Wikipedia
Windows service - Wikipedia
From Wikipedia, the free encyclopedia
Component of the Microsoft Windows operating system

In Windows NT operating systems, a Windows service is a computer program that operates in the background.[1] It is similar in concept to a Unix daemon.[1] A Windows service must conform to the interface rules and protocols of the Service Control Manager, the component responsible for managing Windows services. It is the Services and Controller app, services.exe, that launches all the services and manages their actions, such as start, end, etc.[2]

Windows services can be configured to start when the operating system is started and run in the background as long as Windows is running. Alternatively, they can be started manually or by an event. Windows NT operating systems include numerous services which run in context of three user accounts: System, Network Service and Local Service. These Windows components are often associated with Host Process for Windows Services. Because Windows services operate in the context of their own dedicated user accounts, they can operate when a user is not logged on.

Prior to Windows Vista, services installed as an "interactive service" could interact with Windows desktop and show a graphical user interface. In Windows Vista, however, interactive services are deprecated and may not operate properly, as a result of Windows Service hardening.[3][4]

Administration

[edit]

Windows administrators can manage services via:

  • The Services snap-in (found under Administrative Tools in Windows Control Panel)
  • Sc.exe
  • Windows PowerShell

Services snap-in

[edit]

The Services snap-in, built upon Microsoft Management Console, can connect to the local computer or a remote computer on the network, enabling users to:[1]

  • view a list of installed services along with service name, descriptions and configuration
  • start, stop, pause or restart services[5]
  • specify service parameters when applicable
  • change the startup type. Acceptable startup types include:
    • Automatic: The service starts at system startup.
    • Automatic (Delayed): The service starts a short while after the system has finished starting up. This option was introduced in Windows Vista in an attempt to reduce the boot-to-desktop time. However, not all services support delayed start.[6]
    • Manual: The service starts only when explicitly summoned.
    • Disabled: The service is disabled. It will not run.
  • change the user account context in which the service operates
  • configure recovery actions that should be taken if a service fails
  • inspect service dependencies, discovering which services or device drivers depend on a given service or upon which services or device drivers a given service depends
  • export the list of services as a text file or as a CSV file

Command line

[edit]
sc
DevelopersMicrosoft, ReactOS Contributors
Operating systemWindows, ReactOS
TypeCommand
LicenseWindows: Proprietary commercial software
ReactOS: GNU General Public License
Websitedocs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2012-R2-and-2012/cc754599(v%3dws.11)

The command-line tool to manage Windows services is sc.exe. It is available for all versions of Windows NT.[7] This utility is included with Windows XP[8] and later[9] and also in ReactOS.

The sc command's scope of management is restricted to the local computer. However, starting with Windows Server 2003, not only can sc do all that the Services snap-in does, but it can also install and uninstall services.[9]

The sc command duplicates some features of the net command.[10]

The ReactOS version was developed by Ged Murphy and is licensed under the GPL.[11]

sc sub-commands
Name Description Windows support ReactOS support
query Show service status Yes Yes
queryex Show extended service info (e.g. pid, flags) Yes Yes
start Start a service Yes Yes
pause Pause a service Yes Yes
interrogate Send an INTERROGATE control request to a service Yes Yes
continue Continue a service Yes Yes
stop Stop a service Yes Yes
config permanently change the service configuration Yes Yes
description Change a service description Yes Yes
failure Change the actions taken by a service upon failure Yes Yes
failureflag Yes No
sidtype Yes No
privs Yes No
managedaccount Yes No
qc Show the service config (e.g. dependencies, full path etc.) Yes Yes
qdescription Query a service description Yes Yes
qfailure Yes No
qfailureflag Yes No
qsidtype Yes No
qprivs Yes No
qtriggerinfo Yes No
qpreferrednode Yes No
qmanagedaccount Yes No
qprotection Yes No
quserservice Yes No
delete Delete a service Yes Yes
create Create a service Yes Yes
control Send a control to a service Yes Yes
sdshow Display a service's security descriptor using SDDL Yes Yes
sdset Sets a service's security descriptor using SDDL Yes Yes
showsid Yes No
triggerinfo Yes No
preferrednode Yes No
GetDisplayName Show the service DisplayName Yes Yes
GetKeyName Show the service ServiceKeyName Yes Yes
EnumDepend Show the service Dependencies Yes Yes
boot Yes No
Lock Yes No
QueryLock Yes No

Examples

[edit]

The following example enumerates the status for active services & drivers.[12]

C:\>sc query

The following example displays the status for the Windows Event log service.[12]

C:\>sc query eventlog

PowerShell

[edit]

The Microsoft.PowerShell.Management PowerShell module (included with Windows) has several cmdlets which can be used to manage Windows services:

  • Get-Service[13]
  • New-Service[14]
  • Restart-Service[15]
  • Resume-Service[16]
  • Set-Service[17]
  • Start-Service[18]
  • Stop-Service[19]
  • Suspend-Service[20]

Other management tools

[edit]

Windows also includes components that can do a subset of what the snap-in, Sc.exe and PowerShell do. The net command can start, stop, pause or resume a Windows service.[21] In Windows Vista and later, Windows Task Manager can show a list of installed services and start or stop them. MSConfig can enable or disable (see startup type description above) Windows services.

Installation

[edit]

Windows services are installed and removed via *.INF setup scripts by SetupAPI; an installed service can be started immediately following its installation, and a running service can be stopped before its deinstallation.[22][23][24]

Development

[edit]

Writing native services

[edit]

For a program to run as a Windows service, the program needs to be written to handle service start, stop, and pause messages from the Service Control Manager (SCM) through the System Services API. SCM is the Windows component responsible for managing service processes.

Wrapping applications as a service

[edit]

The Windows Resource Kit for Windows NT 3.51, Windows NT 4.0 and Windows 2000 provides tools to control the use and registration of services: SrvAny.exe acts as a service wrapper to handle the interface expected of a service (e.g. handle service_start and respond sometime later with service_started or service_failed) and allow any executable or script to be configured as a service. Sc.exe allows new services to be installed, started, stopped and uninstalled.[25]

See also

[edit]
Windows services
  • List of Microsoft Windows components § Services
  • Windows Service Hardening
  • svchost.exe
Concept
  • Background process
    • Daemon (computing)
    • DOS Protected Mode Services
    • Terminate-and-stay-resident program
    • Device driver
  • Operating system service management
    • Service Control Manager
    • Service Management Facility
  • Service wrapper

References

[edit]
  1. ^ a b c "Services overview". TechNet. Microsoft. Retrieved 29 March 2013.
  2. ^ "Services". Microsoft Developer Network. Microsoft. Retrieved 29 March 2013.
  3. ^ "New Elevation PowerToys for Windows Vista". TechNet Magazine. Microsoft. June 2008. Retrieved 21 June 2013. The service CmdAsSystem is configured as interactive whose support is being deprecated. The service may not function properly. The problem is that this script tries to create and start an interactive service. Interactive services will not function correctly due to Session 0 Isolation in Windows Vista.
  4. ^ "Services in Windows". MSDN. Microsoft. 18 October 2010. Retrieved 21 June 2013.
  5. ^ "Start, stop, pause, resume, or restart a service". TechNet. Microsoft. Retrieved 29 March 2013.
  6. ^ "ServiceInstaller.DelayedAutoStart Property (System.ServiceProcess)". Microsoft. Retrieved 28 November 2017See Remarks section{{cite web}}: CS1 maint: postscript (link)
  7. ^ "How to create a Windows service by using Sc.exe". Support. Microsoft. 11 September 2011. Retrieved 29 March 2013.
  8. ^ "Command-line reference A-Z: SC". TechNet. Microsoft. Retrieved 8 January 2014.
  9. ^ a b "Command-Line Reference: Sc". TechNet. Microsoft. Retrieved 8 January 2014. Windows 7, Windows 8, Windows Server 2003, Windows Server 2003 R2, Windows Server 2003 with SP1, Windows Server 2003 with SP2, Windows Server 2008, Windows Server 2008 R2, Windows Server 2012, Windows Vista
  10. ^ SC - Service Control - Windows CMD - SS64.com
  11. ^ reactos/sc.c at master · reactos/reactos · GitHub
  12. ^ a b MS-DOS and Windows command line sc command
  13. ^ "Get-Service". TechNet. Microsoft. Retrieved 29 March 2013.
  14. ^ "New-Service". TechNet. Microsoft. Retrieved 29 March 2013.
  15. ^ "Restart-Service". TechNet. Microsoft. Retrieved 29 March 2013.
  16. ^ "Resume-Service". TechNet. Microsoft. Retrieved 29 March 2013.
  17. ^ "Set-Service". TechNet. Microsoft. Retrieved 29 March 2013.
  18. ^ "Start-Service". TechNet. Microsoft. Retrieved 29 March 2013.
  19. ^ "Stop-Service". TechNet. Microsoft. Retrieved 29 March 2013.
  20. ^ "Suspend-Service". TechNet. Microsoft. Retrieved 29 March 2013.
  21. ^ "Start, stop, pause, resume, or restart a service". TechNet. Microsoft. Retrieved 8 January 2014.
  22. ^ "INF AddService Directive". Microsoft. Retrieved 10 July 2017.
  23. ^ "SetupInstallServicesFromInfSection function". MSDN. Microsoft. Retrieved 10 July 2017.
  24. ^ "SetupInstallServicesFromInfSectionEx function". MSDN. Microsoft. Retrieved 10 July 2017.
  25. ^ "How To Create a User-Defined Service". Support. Microsoft. Retrieved 29 March 2013.

Further reading

[edit]
  • Savill, John (5 March 1999). "What are the ErrorControl, Start and Type values under the Services subkeys?". Windows IT Pro. Penton Media. Retrieved 29 March 2013.
  • David B. Probert, Windows Service Processes

External links

[edit]
Wikibooks has a book on the topic of: Guide to Windows Commands
  • Windows Sysinternals: Autoruns for Windows v13.4 – An extremely detailed query of services
  • Service Management With Windows Sc From Command Line – Windows Service Management Tutorial
  • Windows Service Manager Tray
  • v
  • t
  • e
Microsoft Windows components
  • APIs
  • Architecture
    • 9x
    • NT
  • Booting process
  • Games
Management
tools
  • App Installer
  • Command Prompt
  • Control Panel
  • Device Manager
  • DirectX Diagnostic Tool
  • Disk Cleanup
  • Drive Optimizer
  • Driver Verifier
  • Event Viewer
  • IExpress
  • Management Console
  • Netsh
  • Performance Monitor
  • PowerShell
  • Recovery Console
  • Resource Monitor
  • Settings
  • Sysprep
  • System Configuration
  • System File Checker
  • System Information
  • System Policy Editor
  • System Restore
  • Task Manager
  • Windows Backup
  • Windows Error Reporting
  • Windows Ink
  • Windows Installer
  • Windows Update
    • Windows Insider
  • WinRE
  • WMI
Apps
  • 3D Viewer
  • Calculator
  • Calendar
  • Camera
  • Character Map
  • City Art Search
  • Clipchamp
  • Clock
  • Company Portal
  • Copilot
  • Edge
  • Fax and Scan
  • Feedback Hub
  • Get Help
  • Magnifier
  • Mail
  • Media Player
    • 2022
  • Mesh
  • Messaging
  • Mobility Center
  • Money
  • Movies & TV
  • Narrator
  • News
  • Notepad
  • OneDrive
  • OneNote
  • Paint
  • PC Manager
  • People
  • Phone Link
  • Photos
  • Quick Assist
  • Remote Desktop Connection
  • Snipping Tool
  • Sound Recorder
  • Speech Recognition
  • Sticky Notes
  • Store
  • Terminal
  • To Do
  • Weather
  • Whiteboard
  • Windows App
  • Xbox
Shell
  • Action Center
  • Aero
  • AutoPlay
  • AutoRun
  • ClearType
  • Explorer
  • Search
    • IFilter
    • Indexing Service
    • Namespace
    • Saved search
    • Special folder
  • Start menu
  • Task View
  • Taskbar
  • Windows Spotlight
  • Windows XP visual styles
Services
  • BITS
  • CLFS
  • Error Reporting
  • Multimedia Class Scheduler
  • Service Control Manager
  • Shadow Copy
  • Task Scheduler
  • Wireless Zero Configuration
File systems
  • CDFS
  • DFS
  • exFAT
  • FAT
  • IFS
  • NTFS
    • EFS
    • Hard link
    • links
    • Mount Point
    • Reparse point
    • TxF
  • ReFS
  • UDF
Server
  • Active Directory
  • Active DRM Services
  • DFS Replication
  • Distributed Transaction Coordinator
  • DNS
  • Domains
  • Folder redirection
  • Group Policy
  • Hyper-V
  • IIS
  • MSMQ
  • Network Access Protection
  • Print Services for UNIX
  • PWS
  • Remote Desktop Services
  • Remote Differential Compression
  • Remote Installation Services
  • Roaming user profiles
  • Server Core
  • SharePoint
  • System Resource Manager
  • Windows Deployment Services
  • Windows Media Services
  • WSUS
Architecture
  • Boot Manager
  • Console
  • CSRSS
  • Desktop Window Manager
  • Enhanced Write Filter
  • Graphics Device Interface
  • Hardware Abstraction Layer
  • I/O request packet
  • Imaging Format
  • Kernel Transaction Manager
  • Library files
  • Logical Disk Manager
  • LSASS
  • MinWin
  • NTLDR
  • Ntoskrnl.exe
  • Object Manager
  • Open XML Paper Specification
  • Portable Executable
    • DLL
    • EXE
  • Registry
  • Resource Protection
  • Security Account Manager
  • Server Message Block
  • Shadow Copy
  • SMSS
  • System Idle Process
  • USER
  • WHEA
  • Winlogon
  • WinUSB
Security
  • Security and Maintenance
  • AppLocker
  • BitLocker
  • Credential Guard
  • Data Execution Prevention
  • Defender
  • Family features
  • Kernel Patch Protection
  • Mandatory Integrity Control
  • Protected Media Path
  • User Account Control
  • User Interface Privilege Isolation
  • Windows Firewall
Compatibility
  • COMMAND.COM
  • Windows Subsystem for Linux
  • WoW64
API
  • Active Scripting
    • JScript
    • VBScript
    • WSH
  • COM
    • ActiveX
    • ActiveX Document
    • COM Structured storage
    • DCOM
    • OLE
    • OLE Automation
    • Transaction Server
  • DirectX
  • Native
  • .NET
  • Universal Windows Platform
  • WinAPI
  • Windows Mixed Reality
  • Windows Runtime
  • WinUSB
Games
  • Solitaire Collection
  • Surf
Discontinued
Games
  • 3D Pinball
  • Chess Titans
  • FreeCell
  • Hearts
  • Hold 'Em
  • InkBall
  • Purble Place
  • Solitaire
  • Spider Solitaire
  • Tinker
Apps
  • ActiveMovie
  • Address Book
  • Anytime Upgrade
  • Backup and Restore
  • Cardfile
  • CardSpace
  • CD Player
  • Chat
  • Contacts
  • Cortana
  • Desktop Gadgets
  • Diagnostics
  • DriveSpace
  • DVD Maker
  • Easy Transfer
  • Edge Legacy
  • Fax
  • Food & Drink
  • Groove Music
  • Health & Fitness
  • Help and Support Center
  • HyperTerminal
  • Imaging
  • Internet Explorer
  • Journal
  • Make Compatible
  • Maps
  • Media Center
  • Meeting Space
  • Messaging
  • Messenger
  • Mobile Device Center
  • Movie Maker
  • MSN Dial-Up
  • NetMeeting
  • NTBackup
  • Outlook Express
  • Paint 3D
  • Pay
  • Phone Companion
  • Photo Gallery
  • Photo Viewer
  • Program Manager
  • Skype
  • Sports
  • Start
  • Steps Recorder
  • Syskey
  • Tips
  • Travel
  • WinHelp
  • WordPad
  • Write
Others
  • Desktop Cleanup Wizard
  • File Protection
  • Games for Windows
  • HPFS
  • Interix
  • Media Control Interface
  • MS-DOS 7
  • Next-Generation Secure Computing Base
  • POSIX subsystem
  • ScanDisk
  • Video for Windows
  • Virtual DOS machine
  • Windows on Windows
  • Windows Services for UNIX
  • Windows SideShow
  • Windows System Assessment Tool
  • Windows To Go
  • WinFS
Spun off to
Microsoft Store
  • DVD Player
  • File Manager
  • Hover!
  • Mahjong
  • Minesweeper
  •  Category
  •  List
  • v
  • t
  • e
Windows command-line programs and shell builtins
Ecosystem
Interpreters
  • COMMAND.COM
  • Command Prompt
  • PowerShell
  • Recovery Console
Terminals
  • Windows Console
  • Windows Terminal
File system navigation
  • cd (chdir)
  • dir
  • popd
  • pushd
  • tree
File management
  • attrib
  • cacls
  • cipher
  • compact
  • copy
  • del (erase)
  • deltree
  • icacls
  • mkdir (md)
  • mklink
  • move
  • openfiles
  • recover
  • ren (rename)
  • replace
  • rmdir (rd)
  • robocopy
  • takeown
  • xcopy
Archiving
  • expand
  • extrac32
  • extract
  • makecab
  • pax
  • tar
Disk management
  • chkdsk
  • convert
  • defrag
  • diskcomp
  • diskcopy
  • diskpart
  • diskraid
  • diskshadow
  • drvspace
  • fdisk
  • format
  • fsutil
  • label
  • manage-bde
  • MSCDEX
  • refsutil
  • subst
  • scandisk
  • sys
  • vol
  • vssadmin
Processes
  • at
  • exit
  • kill
  • runas
  • sc
  • schtasks
  • shutdown
  • start
  • taskkill
  • tasklist
Registry
  • assoc
  • ftype
  • reg
  • regini
  • regsvr32
User environment
  • chcp
  • cmdkey
  • date
  • graftabl
  • mode
  • path
  • set
  • setver
  • setx
  • time
  • title
  • ver
  • where
  • whoami
File contents
  • comp
  • edit
  • edlin
  • fc
  • find
  • findstr
  • print
  • type
Scripting
  • choice
  • clip
  • cscript
  • doskey
  • echo
  • for
  • forfiles
  • goto
  • if
  • more
  • pause
  • prompt
  • rem
  • timeout
Networking
  • arp
  • bitsadmin
  • curl
  • getmac
  • hostname
  • ipconfig
  • nbtstat
  • net
  • netsh
  • netstat
  • nslookup
  • PathPing
  • ping
  • rpcping
  • route
  • scp
  • setspn
  • sftp
  • ssh
  • ssh-add
  • ssh-agent
  • ssh-keygen
  • ssh-keyscan
  • tracert
  • winrm
  • winrs
Maintenance and care
  • auditpol
  • dism
  • dispdiag
  • driverquery
  • eventcreate
  • eventtriggers
  • gpresult
  • gpupdate
  • logman
  • mofcomp
  • msiexec
  • ntbackup
  • pentnt
  • pnpunattend
  • pnputil
  • REAgentC
  • relog
  • sfc
  • sxstrace
  • systeminfo
  • tpmtool
  • tpmvscmgr
  • tracerpt
  • typeperf
  • w32tm
  • WBAdmin
  • wecutil
  • wevtutil
  • winmgmt
  • winsat
  • wmic
Boot management
  • bcdedit
  • bootcfg
  • bootsect
  • fixboot
  • fixmbr
Software development
  • break
  • debug
  • exe2bin
  • QBasic
  • wsl
Miscellaneous
  • cls
  • dpath
  • help
  • List of DOS commands
  • Environment variables
  • Windows Support Tools
Retrieved from "https://teknopedia.ac.id/w/index.php?title=Windows_service&oldid=1237793043"
Categories:
  • Windows commands
  • Windows services
  • Process (computing)
Hidden categories:
  • CS1 maint: postscript
  • Articles with short description
  • Short description matches Wikidata

  • indonesia
  • Polski
  • العربية
  • Deutsch
  • English
  • Español
  • Français
  • Italiano
  • مصرى
  • Nederlands
  • 日本語
  • Português
  • Sinugboanong Binisaya
  • Svenska
  • Українська
  • Tiếng Việt
  • Winaray
  • 中文
  • Русский
Sunting pranala
url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url url
Pusat Layanan

UNIVERSITAS TEKNOKRAT INDONESIA | ASEAN's Best Private University
Jl. ZA. Pagar Alam No.9 -11, Labuhan Ratu, Kec. Kedaton, Kota Bandar Lampung, Lampung 35132
Phone: (0721) 702022
Email: pmb@teknokrat.ac.id